2024-03-12 01:56:44 -06:00
|
|
|
<body class="container">
|
|
|
|
|
<div class="register-page">
|
|
|
|
|
<div class="form-container">
|
|
|
|
|
<h1 class="mt-5 mb-4">Register</h1>
|
|
|
|
|
|
|
|
|
|
<form action="/register" method="POST" class="mt-3">
|
|
|
|
|
|
|
|
|
|
<div class="mb-3">
|
|
|
|
|
<label for="username" class="form-label">Username:</label>
|
|
|
|
|
<input type="text" class="form-control" id="username" name="username" required>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="mb-3">
|
|
|
|
|
<label for="password" class="form-label">Password:</label>
|
|
|
|
|
<input type="password" class="form-control" id="password" name="password" required>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<button type="submit" class="btn btn-primary">Submit</button>
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
<p class="mt-3">Already have an account? <a href="/login">Login</a></p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|