mirror of
https://github.com/Steffo99/estus.git
synced 2024-11-22 15:44:19 +00:00
20 lines
721 B
HTML
20 lines
721 B
HTML
|
{% extends 'base.htm' %}
|
||
|
{% block title %}Non autorizzato • 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>400 Bad Request:</b> Hai mandato al server una richiesta senza tutti i campi richiesti.<br>
|
||
|
Il problema non è un campo rimasto vuoto, ma un campo che per qualche motivo è completamente assente.
|
||
|
</div>
|
||
|
<div>
|
||
|
Sarai reindirizzato alla pagina precedente entro 4 secondi (se hai abilitato il javascript).
|
||
|
</div>
|
||
|
{% endblock %}
|