-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInput.html
More file actions
89 lines (70 loc) · 1.9 KB
/
Copy pathInput.html
File metadata and controls
89 lines (70 loc) · 1.9 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!doctype html>
<html>
<head>
<title>Sign Up Now!</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<header>
<div class="container">
<h1>Welcome to the Greatest Page on Earth</h1>
<h2>Sign Up Below</h2>
</div>
</header>
<div class="container">
<div class="inputcontainer">
<h3>Input Your Information Here!</h3>
<input class="firstName" placeholder="First Name">
<input class="lastName" placeholder="Last Name">
<input class="email" placeholder="Email Address">
<input class="homeTown" placeholder="Home Town">
<input class="homeState" placeholder="Home State">
<input class="month" placeholder="Month of Birth">
<input class="date" placeholder="Date of Birth">
<input class="year" placeholder="Year of Birth">
<div class="button">
<div class="large">Sign Up!</div>
</div>
</div> <!-- End Input Container -->
<div class="registrationcontainer">
<h3>See Your Information Here!</h3>
<img class="icon" src="Smiley Face.jpg">
<h4>Do not worry you can change your profile picture later</h4>
<div class="nameDisplay">
<div id="FirstName"></div>
<div id="LastName"></div>
</div>
<div class="emailDisplay">
<div id="Email"></div>
</div>
<div class="Home">
<div id="HomeTown"></div>
<div id="HomeState"></div>
</div>
<div class="birth">
<div id="Month"></div>
<div id="Date"></div>
<div id="Year"></div>
</div>
</div> <!-- End registration container -->
<div class="membercontainer">
<div class="userList">
<h3>See who is already a member!</h3>
<ul>
</ul>
</div> <!-- end of userList -->
<div class="userTotal">
<ul>
</ul>
</div>
</div>
</div>
<script src="jquery-2.0.3.min.js"></script>
<script src="test.js"></script>
</body>
<footer>
<div class="container">
<h1>Thank You For Stopping By</h1>
</div>
</footer>
</html>