57 lines
1.5 KiB
HTML
57 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Forgot Password - monotreme.org</title>
|
|
<link rel="stylesheet" href="../../styles.css">
|
|
</head>
|
|
<body>
|
|
<table>
|
|
<!-- Header -->
|
|
<tr>
|
|
<td colspan="2" class="header">
|
|
<h1>Forgot Password</h1>
|
|
</td>
|
|
</tr>
|
|
|
|
<!-- Main Content and Sidebar -->
|
|
<tr>
|
|
<!-- Sidebar -->
|
|
<td class="sidebar">
|
|
<p><strong>Quick Links</strong></p>
|
|
<ul>
|
|
<li><a href="/platypus/">The Noble Platypus</a></li>
|
|
<li><a href="/echidna/">The Royal Echidna</a></li>
|
|
<li><a href="/monotremes/">About Monotremes</a></li>
|
|
</ul>
|
|
</td>
|
|
|
|
<!-- Main Content Area -->
|
|
<td class="content">
|
|
<h2>Reset your password</h2>
|
|
<!-- Forgot Password Form -->
|
|
<div class="form-container">
|
|
<form action="/cgi-bin/forgot_password.cgi" method="post">
|
|
<label for="username">Username:</label>
|
|
<input type="text" id="username" name="username" required>
|
|
<br>
|
|
<label for="email">Email:</label>
|
|
<input type="email" id="email" name="email" required>
|
|
<br>
|
|
<input type="submit" value="Reset Password">
|
|
</form>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
|
|
<!-- Footer -->
|
|
<tr>
|
|
<td colspan="2" class="footer">
|
|
<p>© 2024 monotreme.org</p>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|