mirror of
https://github.com/Steffo99/estus.git
synced 2024-11-21 23:24:18 +00:00
Send the user back to the login page if a 403 error is encountered
This commit is contained in:
parent
c0f479880d
commit
ec98062e0e
2 changed files with 14 additions and 3 deletions
|
@ -207,7 +207,7 @@ def page_login():
|
|||
session['username'] = request.form['username']
|
||||
return redirect(url_for('page_dashboard'))
|
||||
else:
|
||||
abort(403)
|
||||
return render_template('error.htm', error="Username o password non validi.")
|
||||
|
||||
|
||||
@app.route('/dashboard')
|
||||
|
@ -572,7 +572,6 @@ def page_disp_show(did):
|
|||
return redirect(url_for('page_disp_list'))
|
||||
|
||||
|
||||
|
||||
@app.route('/net_add', methods=['GET', 'POST'])
|
||||
def page_net_add():
|
||||
"""Pagina di creazione nuova rete:
|
||||
|
@ -596,7 +595,7 @@ def page_net_del(nid):
|
|||
"""Pagina di cancellazione rete:
|
||||
accetta richieste GET per cancellare la rete specificata."""
|
||||
if 'username' not in session:
|
||||
return redirect(url_for('page_login'))
|
||||
return abort(403)
|
||||
rete = Rete.query.get_or_404(nid)
|
||||
db.session.delete(rete)
|
||||
db.session.commit()
|
||||
|
|
|
@ -1,7 +1,19 @@
|
|||
{% extends 'base.htm' %}
|
||||
{% block title %}Non autorizzato • estus{% endblock %}
|
||||
{% block extrahead %}
|
||||
<script>
|
||||
window.onload = function() {
|
||||
setTimeout(function() {
|
||||
window.location.href = "/login";
|
||||
}, 4000)
|
||||
}
|
||||
</script>
|
||||
{% endblock %}
|
||||
{% 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>
|
||||
{% endblock %}
|
Loading…
Reference in a new issue