-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnewacct.html
33 lines (31 loc) · 1.05 KB
/
newacct.html
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
<!DOCTYPE html>
<html>
<head>
<title>New account | NOS</title>
<link rel="shortcut icon" type="image/png" href="/static/favicon.png"/>
<link rel="stylesheet" type="text/css" href="/static/style.css">
<script src="/socket.io/socket.io.js"></script>
<script src="https://code.jquery.com/jquery-1.11.1.js"></script>
</head>
<body>
<header>
<div><h1>Sign Up</h1></div>
<div class='right'><a href='/'><button>Home</button></a></div>
</header>
<div style='height:100px;'></div>
<h3 id='errors' class='center' style='color:red;'></h3>
<br /><br />
<form onsubmit="return false" class='center'>
<p>Username:</p>
<input class='infobox' id="username"> <br /><br />
<p>Password:</p>
<input class='infobox' type="password" id="password"> <br /><br />
<p>Confirm password:</p>
<input class='infobox' type="password" id="confPassword"> <br /><br />
<button onclick="newAcct()">Register</button>
</form>
<br /><br />
<a href='/login.html'><h3 class='center'>Log In</h3></a>
<script src='/newacct.js'></script>
</body>
</html>