Files
PayDirt/public/register.html

35 lines
1.1 KiB
HTML
Raw Normal View History

2025-11-12 10:13:24 -05:00
<!DOCTYPE html>
<html>
<head>
<title>Register</title>
<link rel="stylesheet" href="../assets/css/style.css">
</head>
<body>
<div class="center">
<h2>Register</h2>
<form id="registerForm">
<input type="text" id="regUser" placeholder="Username" required>
<input type="password" id="regPass" placeholder="Password" required>
2025-11-18 21:28:44 -05:00
<input type="password" id="regVerify" placeholder="Verify password" required>
2025-11-12 10:13:24 -05:00
<select id="regRole" name="Role" required>
2025-11-17 18:56:31 -05:00
<option value="user">User</option>
<option value="player">Player</option>
2025-11-12 10:13:24 -05:00
</select>
<button type="submit">Register</button>
</form>
2025-11-28 13:54:57 -05:00
<div class="error">
<p>Error Message</p>
</div>
<div class="success">
<p>Login successful</p>
</div>
2025-11-12 10:13:24 -05:00
<div class="register">
<p>Already have an account?</p>
2025-11-18 21:16:35 -05:00
<a href="/login">Login</a>
2025-11-12 10:13:24 -05:00
</div>
<script type="module" src="register.js"></script>
</div>
</body>
</html>