addd password recovery

This commit is contained in:
2023-02-12 12:29:18 +01:00
parent 39574a2c06
commit f7d2e8563b
13 changed files with 362 additions and 19 deletions

16
templates/error.html Normal file
View File

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>PyMenu</title>
</head>
<body>
<h1>Error</h1>
{% if error %}
<h2>{{error}}</h2>
{% endif %}
<a href="/">
<input type="button" value="Revenir a l'acceuil">
</a>
</body>
</html>