File size: 424 Bytes
834b1f4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
<!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> |