-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsign_up.html
executable file
·61 lines (61 loc) · 2.27 KB
/
sign_up.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
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<title>The Nerd Hut - Sign-Up</title>
<meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
<link rel="stylesheet" href="sign_up.css">
</head>
<body>
<div id="title_bar">
<header>The Nerd Hut</header>
<nav>
<a id="home" href="homepage.html">HOME</a>
<a id="shop" href="shop.html">SHOP</a>
<a id="sign_up" href="sign_up.html">SIGN-UP</a>
<a id="log_in" href="log_in.html">LOG IN</a>
</nav>
</div>
<div id="table_1">
<table>
<tr>
<td>
Enter Full Name:
</td>
<td>
<input type="text" id="full_name" required="required" />
</td>
</tr>
<tr>
<td>
Enter Email Address:
</td>
<td>
<input type="email" id="email" placeholder="email@domain.com" required="required" />
</td>
</tr>
<tr>
<td>
Enter Desired User Name:
</td>
<td>
<input type="text" id="user_name" required="required" />
</td>
</tr>
<tr>
<td>
Enter Password:
</td>
<td>
<input type="password" id="password" required="required" />
</td>
</tr>
<tr><td><br/></td></tr>
<tr>
<td colspan="2">
<button type="submit" id="submit">Submit</button>
</td>
</tr>
</table>
</div>
</body>
</html>