TrhlinaBar/templates/error.html
2023-03-06 08:52:30 +01:00

13 lines
No EOL
213 B
HTML

{% extends 'base.html' %}
{% block content %}
<section>
<h1>{{msg}}</h1>
</section>
<script>
var timer = setTimeout(function() {
window.location='/'
}, 8000);
</script>
{% endblock %}