-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
142 lines (116 loc) · 3.82 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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<html>
<head>
<!-- CODE CAMP SIGN UP PAGE -->
<meta charset="utf-8">
<title>Code Reboot | Sign Up</title>
<!-- CSS Files -->
<link rel="stylesheet" href="./css/style.css">
<link rel="icon" type="image/png" href="./img/logo.png">
<!-- Javascript Files -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="./javascript/script.js"></script>
<script src="./javascript/signup.js"></script>
</head>
<body>
<!-- Header -->
<header class="desktop-nav">
<div class="container">
<div id="branding">
<a href="index.html" id="branding-link">
<img src="./img/logo.png">
<h1>Code Reboot</h1>
</a>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="details.html">Details</a></li>
<li><a href="mailto:[email protected]?subject=I have a question about Code Reboot 2017...">Contact</a></li>
<li><a href="signup.html">Sign Up</a></li>
</ul>
</nav>
</div>
</header>
<!-- Mobile Nav -->
<header class="mobile-nav">
<div class="container">
<div id="branding">
<a href="index.html" class="branding-link">
<img src="./img/logo.png">
<h1>Code Reboot</h1>
</a>
</div>
<div id="toggle-menu">
<div></div>
<div></div>
<div></div>
</div>
</div>
<div class="container" id="dropdown">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="details.html">Details</a></li>
<li><a href="mailto:[email protected]?subject=I have a question about Code Reboot 2017...">Contact</a></li>
<li><a href="signup.html">Sign Up</a></li>
</ul>
</nav>
</div>
</header>
<!-- Banner -->
<section class="banner">
<div class="container">
<h1>Sign Up</h1>
</div>
</section>
<section class="card" id="contact">
<div class="container">
<form>
<label for="parent">Parent Name</label>
<br>
<input type="text" id="parent" placeholder="First and Last">
<br>
<label for="phone-number">Daytime Phone Number</label>
<br>
<input type="text" id="phone-number" placeholder="Ex: 123 456 7890">
<br>
<label for="student">Student Name</label>
<br>
<input type="text" id="student" placeholder="First and Last">
<br>
<label for="age">Student's Age</label>
<br>
<input type="text" id="age" placeholder="Student's Age">
<br>
<label for="allergies">Student's Allergies</label>
<br>
<input type="text" id="allergies" placeholder="Ex: Peanuts, Dairy, etc.">
<br>
<label for="comments">Comments</label>
<br>
<textarea id="comments" placeholder="Additional Comments" style="height:200px"></textarea>
<br>
<button id="submit" type="button" value="Email" onclick="
submitEmail();
">Send Email</button>
</form>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<h3>Our Pages</h3>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="details.html">Details</a></li>
<li><a href="mailto:[email protected]?subject=I have a question about Code Reboot 2017...">Contact</a></li>
<li><a href="signup.html">Sign Up</a></li>
</ul>
</nav>
<p>Code Reboot, Copyright © 2018 All Rights Reserved.</p>
</div>
</footer>
</body>
</html>