Add style to status_code page
This commit is contained in:
parent
d290fe476b
commit
55d782916d
2 changed files with 8 additions and 2 deletions
|
@ -16,7 +16,7 @@
|
||||||
|
|
||||||
<script src="/static/js/bvplan.js"></script>
|
<script src="/static/js/bvplan.js"></script>
|
||||||
<script>
|
<script>
|
||||||
setTimeout(reload, waitDelay);
|
setTimeout(reload, 30_000);
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
|
@ -2,7 +2,13 @@
|
||||||
|
|
||||||
{% block title %}{{ status_code.as_str() }}{% endblock %}
|
{% block title %}{{ status_code.as_str() }}{% endblock %}
|
||||||
|
|
||||||
{% block head %}{% endblock %}
|
{% block head %}
|
||||||
|
<style>
|
||||||
|
html, body {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
{% block body %}
|
{% block body %}
|
||||||
<h1>{{ status_code }}</h1>
|
<h1>{{ status_code }}</h1>
|
||||||
|
|
Loading…
Reference in a new issue