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

19 lines
626 B
HTML
Raw Normal View History

2017-09-13 07:06:59 +00:00
{% extends 'base.htm' %}
{% block title %}Non autorizzato • estus{% endblock %}
{% block extrahead %}
<script>
window.onload = function() {
setTimeout(function() {
2017-09-21 07:29:49 +00:00
window.location.href = "{{ url_for("page_login") }}";
}, 4000)
}
</script>
{% endblock %}
2017-09-13 07:06:59 +00:00
{% block content %}
<div class="alert alert-danger" role="alert">
<b>403 Forbidden:</b> Devi eseguire il login per poter visualizzare questa pagina.
</div>
<div>
Sarai reindirizzato alla pagina di login entro 4 secondi (se hai abilitato il javascript).
</div>
2017-09-13 07:06:59 +00:00
{% endblock %}