Loginauth / templates /password_reset_request.html
Gregniuki's picture
Rename templates/password_reste_request.html to templates/password_reset_request.html
9492b92
raw
history blame
424 Bytes
<!DOCTYPE html>
<html>
<head>
<title>Password Reset Request</title>
<!-- Add any additional head elements here -->
</head>
<body>
<h1>Password Reset Request</h1>
<form action="/password-reset-request" method="post">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<input type="submit" value="Request Password Reset">
</form>
</body>
</html>