templates/reset_password.html (view raw)
1<!DOCTYPE html>
2<html>
3<head>
4 <title>Reset Password</title>
5</head>
6<body>
7 <h1>Reset Password</h1>
8 <form method="post" action="/reset-password">
9 <label>Email: <input type="email" name="email"></label><br>
10 <input type="submit" value="Reset Password">
11 </form>
12 <a href="/register">Sign up</a>
13 <a href="/login">Login</a>
14</body>
15</html>