31 lines
994 B
Plaintext
31 lines
994 B
Plaintext
<!-- forgot-password.ejs -->
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Forgot Password - Your Website</title>
|
|
<link rel="stylesheet" href="forgot-password.css">
|
|
</head>
|
|
<body>
|
|
<div id="forgotPasswordForm">
|
|
<form action="/forgot-password" method="post">
|
|
<% if (typeof error !== 'undefined' && error !== null && error !== '') { %>
|
|
<div class="error-message"><%= error %></div>
|
|
<% } else if (typeof success !== 'undefined' && success !== null && success !== '') { %>
|
|
<div class="success-message"><%= success %></div>
|
|
<% } %>
|
|
|
|
<div class="input-box">
|
|
<span class="details">Username or Email</span>
|
|
<input type="text" name="usernameOrEmail" placeholder="Enter your Username or Email" required>
|
|
</div>
|
|
|
|
<div class="button">
|
|
<input type="submit" value="Submit">
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|