templates/new_password.html (view raw)
1<!DOCTYPE html>
2<html lang="en">
3
4<head>
5 <meta charset="UTF-8">
6 <meta name="viewport" content="width=device-width, initial-scale=1.0">
7 <title>Pagina Protetta</title>
8 <link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css">
9 <link rel="stylesheet" href="/static/style.css">
10</head>
11
12<body>
13 <h1>Reimposta la tua password</h1>
14 <form method="post">
15 <label>Nuova Password: <input type="password" name="password"></label><br>
16 <input type="submit" value="Reimposta Password">
17 </form>
18</body>
19
20</html>