bon au moins j'ai compris le problème

This commit is contained in:
piair 2023-09-28 15:29:55 +02:00
parent 72a9da6cac
commit a7b42ab3a1
3 changed files with 3 additions and 3 deletions

View File

@ -159,7 +159,7 @@ def change_password():
# handle login failed # handle login failed
@app.errorhandler(401) @app.errorhandler(401)
def unauthorized(e): def unauthorized(e):
return(redirect("login")) return(redirect("/login"))
# callback to reload the user object # callback to reload the user object

View File

@ -3,7 +3,7 @@
{% block content %} {% block content %}
{%if not current_user.is_authenticated %} {%if not current_user.is_authenticated %}
<form method="post" action=""> <form method="post" action="/login">
<table> <table>
<tr> <tr>
<td class="comlumn-name">password</td> <td class="comlumn-name">password</td>

View File

@ -1 +1 @@
v6.6.24 v6.6.25