Gregniuki commited on
Commit
834b1f4
·
1 Parent(s): 70ba681

Create password_reste_request.html

Browse files
templates/password_reste_request.html ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Password Reset Request</title>
5
+ <!-- Add any additional head elements here -->
6
+ </head>
7
+ <body>
8
+ <h1>Password Reset Request</h1>
9
+ <form action="/password-reset-request" method="post">
10
+ <label for="email">Email:</label>
11
+ <input type="email" id="email" name="email" required>
12
+ <input type="submit" value="Request Password Reset">
13
+ </form>
14
+ </body>
15
+ </html>