1
Fork 0
mirror of https://github.com/Steffo99/estus.git synced 2024-11-22 07:34:19 +00:00
estus/templates/error.htm

18 lines
No EOL
451 B
HTML

{% extends 'base.htm' %}
{% block extrahead %}
<script>
window.onload = function() {
setTimeout(function() {
window.history.back();
}, 7000)
}
</script>
{% endblock %}
{% block content %}
<div class="alert alert-danger" role="alert">
<b>ERRORE:</b> {{ error }}
</div>
<div>
Sarai reindirizzato alla pagina precedente entro 7 secondi.
</div>
{% endblock %}