-
Notifications
You must be signed in to change notification settings - Fork 2
/
Signup.html
50 lines (45 loc) · 1.63 KB
/
Signup.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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head>
<meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
<link rel="stylesheet" type="text/css" href="style.css" />
<title>Sign Up</title>
</head><body>
<h1>Sign Up</h1>
<table id="signup" class="box">
<tr>
<th>Your Avatar</th>
<th>Info</th>
</tr>
<tr>
<td>
<div><img src="Images/avatar.png"></div>
</td>
<td>
<form action="Map.html" method="get" name="Sign In">
<fieldset id="inputs">
<input id="email" type="email" placeholder="E-mail address" autofocus required><br>
<input id="email_verify" type="email_verify" placeholder="E-mail address again" required><br>
<input id="hero_name" type="hero_name" placeholder="Hero name" required><br>
<input id="password" type="password" placeholder="Password" required><br>
<input id="password_verify" type="password_verify" placeholder="Password again" required><br>
</fieldset>
<fieldset id="actions">
<input type="submit" id="submit" value="Log in">
<a href="Login.html">Already have an account?</a>
</fieldset>
</form>
</td>
</tr>
</table>
<div id="navigation_container">
<table id="navigation">
<tr>
<td><a href="Login.html"><img src="Images/NavBar/signin.png"></td>
<td><a href="Map.html"><img src="Images/NavBar/home.png"></a></td>
<td><a href="Info.html"><img src="Images/NavBar/gameinfo.png"></a></td>
<td><a href="About.html"><img src="Images/NavBar/about.png"></td>
<td><a href="http://www.newheartnm.com"><img src="Images/NavBar/newheart.png"></a></td>
</tr>
</table>
</div>
</body></html>