-
Notifications
You must be signed in to change notification settings - Fork 2
/
createAccount.html
53 lines (49 loc) · 1.54 KB
/
createAccount.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="/js/code.js" defer></script>
<script type="text/javascript" src="/js/createAccount.js" defer></script>
<script type="text/javascript" src="/js/md5.js"></script>
<link rel="stylesheet" href="/css/styles.css" />
<title>Create Account</title>
</head>
<body>
<div class="centerdiv">
<div class="container">
<h1>Create Account</h1>
<form id="create-account">
<div class="login-section">
<input
type="text"
id="createuser"
name="createuser"
placeholder="Username"
/>
</div>
<div class="login-section">
<label for="createpass">Password:</label>
<input
type="password"
id="createpass"
name="createpass"
placeholder="Password"
/>
</div>
<div class="login-section">
<label for="confpass">Confirm Password:</label>
<input
type="password"
id="confpass"
name="confpass"
placeholder="Confirm Password"
/>
</div>
<input type="submit" value="Create Account" />
<span id="createSuccess"></span>
<span id="createError"></span>
</form>
<a id="backToLogin" href=".">Click here to return to login!</a><br />
</div>
</div>
</body>
</html>