Add style to status_code page

This commit is contained in:
Dominic Grimm 2023-03-09 17:12:59 +01:00
parent d290fe476b
commit 55d782916d
No known key found for this signature in database
GPG Key ID: 6F294212DEAAC530
2 changed files with 8 additions and 2 deletions

View File

@ -16,7 +16,7 @@
<script src="/static/js/bvplan.js"></script>
<script>
setTimeout(reload, waitDelay);
setTimeout(reload, 30_000);
</script>
</body>
{% endblock %}

View File

@ -2,7 +2,13 @@
{% block title %}{{ status_code.as_str() }}{% endblock %}
{% block head %}{% endblock %}
{% block head %}
<style>
html, body {
text-align: center;
}
</style>
{% endblock %}
{% block body %}
<h1>{{ status_code }}</h1>