blob: acc13da680399f2a01ac8b68fed7a09e3a42f4e8 (
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
|
<html>
<head>
<title>dump.fm Registration</title>
<link rel="stylesheet" type="text/css" href="static/reset.css">
<link rel="shortcut icon" href="static/favicon.ico">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="static/sha1.js"></script>
<script type="text/javascript" src="static/register.js"></script>
<script>
$(document).ready(initRegister);
</script>
</head>
<body>
<div id="registerbox">
<h1>Register</h1>
<span>Nickname:</span>
<input type="text" id="nickInput" />
<br />
<span>Email:</span>
<input type="text" id="emailInput" />
<br />
<span>Password:</span>
<input type="password" id="passwordInput" />
<br />
<input type="submit" id="submit" value="register" />
</div>
<div id="confirmationbox" style="display: none">
<h1>You've registered!</h1>
<span>Please wait as you're redirected to the chat.</span>
</div>
</body>
</html>
|