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

19 lines
No EOL
532 B
HTML

{% extends 'base.htm' %}
{% block title %}Errore • estus{% endblock %}
{% block extrahead %}
<script>
window.onload = function() {
setTimeout(function() {
window.history.back();
}, 4000)
}
</script>
{% endblock %}
{% block content %}
<div class="alert alert-danger" role="alert">
<b>ERRORE:</b> {{ error }}
</div>
<div>
Sarai reindirizzato alla pagina precedente entro 4 secondi (se hai abilitato il javascript).
</div>
{% endblock %}