60 lines
1.7 KiB
HTML
60 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Register - monotreme.org</title>
|
|
<link rel="stylesheet" href="../../styles.css">
|
|
</head>
|
|
<body>
|
|
<table>
|
|
<!-- Header -->
|
|
<tr>
|
|
<td colspan="2" class="header">
|
|
<h1>Register an account</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>Create a new account</h2>
|
|
<!-- Register Form -->
|
|
<div class="form-container">
|
|
<form action="/cgi-bin/register.cgi" method="post">
|
|
<label for="username">Username:</label>
|
|
<input type="text" id="username" name="username" required>
|
|
<br>
|
|
<label for="password">Password:</label>
|
|
<input type="password" id="password" name="password" required>
|
|
<br>
|
|
<label for="confirm_password">Confirm Password:</label>
|
|
<input type="password" id="confirm_password" name="confirm_password" required>
|
|
<br>
|
|
<input type="submit" value="Register">
|
|
</form>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
|
|
<!-- Footer -->
|
|
<tr>
|
|
<td colspan="2" class="footer">
|
|
<p>© 2024 monotreme.org</p>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|