blob: 9f3b6519b7d48f36dcf685302510cf6d0eb8ff13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>Code Golf Login</title>
<link rel="icon" href="favicon.ico">
<link rel="stylesheet" href="default.css">
<script type="text/javascript" src="register.js"></script>
</head>
<body onload="init()">
<div id="layout">
<div id="container">
<div id="content">
<a href="index.html">Home</a>
<h1>C&! Code Golf Leaderboard</h1>
<h2>Register</h2>
<form id="register-form">
<div id="error" hidden>
<span id="error-message" style="color: red"></span>
<br><br>
</div>
<p>Usernames should consist only of letters, numbers, underscores, and hyphens.</p>
<p>To help mitigate unauthorized access to my server, a registration code is required to create an account. Please see Daniel for the code.</p>
<label for="register-email">Email</label><br>
<input type="text" id="register-email" name="email">
<br><br>
<label for="register-username">Username</label><br>
<input type="text" id="register-username" name="username">
<br><br>
<label for="register-password">Password</label><br>
<input type="password" id="register-password" name="password">
<br><br>
<label for="register-code">Registration Code</label><br>
<input type="password" id="register-code" name="register_code">
<br><br>
<input type="submit" value="Register">
</form>
<center>© 2026 Daniel Hader</center>
</div>
</div>
</div>
</body>
</html>
|