blob: e5ae761f190a4afe9c14244c8686ca31eafced10 (
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
|
<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>
<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" />
</body>
</html>
|