forked from ryantucker0/hackfsu-website-old
-
Notifications
You must be signed in to change notification settings - Fork 1
/
rf_registration.php
254 lines (197 loc) · 11.7 KB
/
rf_registration.php
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
<!DOCTYPE HTML>
<html>
<head>
<title>HackFSU</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="Fueling innovation and interdisciplinary collaboration in Tallahassee" />
<meta name="keywords" content="HTML, CSS, JavaScript, PHP, Minimal Awesomness" />
<meta name="author" content="DryThemes" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="shortcut icon" href="images/favicon.png" />
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800|Montserrat:400,700' rel='stylesheet' type='text/css'>
<link type="text/css" rel="stylesheet" href="css/clear.css"/>
<link type="text/css" rel="stylesheet" href="css/carouFredSel.css"/>
<link type="text/css" rel="stylesheet" href="css/supersized.css"/>
<link type="text/css" rel="stylesheet" href="css/common.css"/>
<link type="text/css" rel="stylesheet" href="css/columns.css"/>
<link type="text/css" rel="stylesheet" href="css/prettyPhoto.css"/>
<link type="text/css" rel="stylesheet" href="css/accordion-tabs.css"/>
<link type="text/css" rel="stylesheet" href="css/style.css"/>
<link type="text/css" rel="stylesheet" href="css/isotope.css"/>
<link type="text/css" rel="stylesheet" href="css/colors.css"/>
<link type="text/css" rel="stylesheet" href="css/responsive.css"/>
<link type="text/css" rel="stylesheet" href="css/jquery.remodal.css"/>
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<script type="text/javascript">
// GA tracking
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-49040472-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<!--Loading gif -->
<table class="doc-loader">
<tr>
<td>
<img src="images/ajax-document-loader.gif" alt="Loading..." />
</td>
</tr>
</table>
<!--Navigation Menu-->
<div id="main-menu" class="main-menu main-menu-fixbg">
<div class="center-relative menu-holder">
<div class="menu-logo left"><img src="images/menu_logo.png" alt="Sensa"/></div>
<ul class="right montserrat-font">
<li class=""><a href="index.html">Home</a></li>
<li class="active"><a href="#about">Registration</a></li>
</ul>
<div class="clear"></div>
</div>
</div>
<!--Services-->
<div id="about" class="clear services section block">
<div class="block content-960 center-relative">
<h2 class="section-title montserrat-font">Registration</h2>
<div class="title-separator"></div>
<form id="regform">
<ul id="register-form">
<li>
<input type="text" id="username" name="username" required placeholder="Username" />
</li>
<li>
<input type="password" id="password" name="password" required placeholder="Password" />
</li>
<li>
<input type="password" id="passwordconfirm" name="passwordconfirm" required placeholder="Password Confirm" />
</li>
<li>
<input type="text" id="name" name="name" required placeholder="Full Name" value="<?php echo $_POST['name']; ?>" />
</li>
<li class="email-holder">
<input type="email" id="email" name="email" required placeholder="Email" value="<?php echo $_POST['email']; ?>" />
</li>
<li class="website-holder">
<input type="text" id="school" name="school" required placeholder="School" value="<?php echo $_POST['school']; ?>" />
</li>
<li>
<b>Dietary restrictions:</b> <br>
<input type="radio" name="dietary" value="vegetarian" id="dietveg" /> <label for="dietveg">Vegetarian or Vegan</label> <br>
<input type="radio" name="dietary" value="gluten" id="dietglut" /> <label for="dietglut">Gluten intolerance</label> <br>
</li>
<li>
<input type="text" id="dietary" name="dietaryother" placeholder="Other dietary restrictions?"/>
</li>
<li>
<b>T-shirt size:</b> <br>
<input required type="radio" name="shirtsize" value="wxsmall" id="shirtwxsmall" /> <label for="shirtwxsmall">Women's X-Small</label> <br>
<input required type="radio" name="shirtsize" value="wsmall" id="shirtwsmall" /> <label for="shirtwsmall">Women's Small</label> <br>
<input required type="radio" name="shirtsize" value="wmedium" id="shirtwmedium" /> <label for="shirtwmedium">Women's Medium</label> <br> <br>
<input required type="radio" name="shirtsize" value="usmall" id="shirtusmall" /> <label for="shirtusmall">Unisex Small</label> <br>
<input required type="radio" name="shirtsize" value="umedium" id="shirtumedium" /> <label for="shirtumedium">Unisex Medium</label> <br>
<input required type="radio" name="shirtsize" value="ularge" id="shirtularge" /> <label for="shirtularge">Unisex Large</label> <br>
<input required type="radio" name="shirtsize" value="uxlarge" id="shirtuxlarge" /> <label for="shirtuxlarge">Unisex X-Large</label> <br>
</li>
<li>
<b>What kind of developer are you? (optional)</b>
<p>Tell us what you know so we can help you find a team at the
event.</p>
<input type="checkbox" name="skillset" value="backend" id="skillbackend" />
<label for="skillbackend">Back-end</label><br>
<input type="checkbox" name="skillset" value="frontend" id="skillfrontend" />
<label for="skillfrontend">Front-end</label><br>
<input type="checkbox" name="skillset" value="designer" id="skilldesigner" />
<label for="skilldesigner">Designer</label><br>
<input type="checkbox" name="skillset" value="ios" id="skillios" />
<label for="skillios">iOS</label><br>
<input type="checkbox" name="skillset" value="android" id="skillandroid" />
<label for="skillandroid">Android</label><br>
<input type="checkbox" name="skillset" value="noob" id="skillnoob" />
<label for="skillnoob">Noob (that's okay!)</label><br>
</li>
<li>
<input type="url" name="github" id="githuburl" placeholder="Github URL (optional)">
</li>
<li>
<!-- Disgusting crap to have a styled upload button -->
<script> function upFile() { document.getElementById('upfile').click(); } </script>
<button class="button" id="upload" onclick="upFile(); return false;">Select Resume PDF</button>
<div style='height: 0px;width:0px; overflow:hidden;'><input id="upfile" type="file" value="upload" data-file /></div>
</li>
<li>
<b>Are you currently looking for job or internship opportunities?</b> <br>
<input type="radio" name="job" value="yes" id="jobyes" /> <label for="jobyes">Yes</label> <br>
<input type="radio" name="job" value="no" id="jobno" /> <label for="jobno">No</label> <br>
</li>
<li class="last-child"> </li>
</ul>
<button type="submit" class="button black" id="submitbtn">Submit Registration</button>
</form>
<div class="full-width top-150 bottom-100">
<div class="picfull">
</div>
</div>
<div class="clear"></div>
</div>
<div class="full-width top-150 bottom-100">
<img src="images/service_graphic_01.png" alt="">
<div id="sponsors"></div>
</div>
<div class="clear"></div>
</div>
</div>
<!--Footer-->
<div class="clear center-text footer">
<div class="scroll-top-holder relative block content-960 center-relative">
</div>
<div class="footer-content center-text block content-960 center-relative">
<img class="bottom-100" src="images/footer_logo.png" alt="" />
<div class="title-separator"></div>
<!--
<div class="big-social center-text top-100">
<a href=""><img src="images/social_twitter.png" alt="" /></a>
<a href="#"><img src="images/socia_pinterest.png" alt="" /></a>
<a href="#"><img src="images/social_facebook.png" alt="" /></a>
</div>
-->
</div>
<div class="footer-copyright center-text">Created by: <a href="http://www.technolegy.org/">TechNOLEgy</a> at Florida State University</div>
</div>
<div id="remodal" class="remodal" data-remodal-id="modal">
<p style="font-size: 20px">
Flat, responsive, lightweight, fast, easy customizable modal window plugin
with declarative state notation and hash tracking.
</p>
<br>
<a class="remodal-confirm" href="#">OK</a>
</div>
<!--Load JavaScript-->
<script type="text/javascript" src="js/jquery-1.8.1.min.js"></script>
<script type="text/javascript" src="js/jquery.isotope.min.js"></script>
<script type="text/javascript" src="js/accordion-tabs.min.js"></script>
<script type="text/javascript" src="js/portfolio.js"></script>
<script type="text/javascript" src="js/supersized.3.2.7.js"></script>
<script type="text/javascript" src="js/jquery.sticky.js"></script>
<script type="text/javascript" src="js/jquery.dryMenu.js"></script>
<script type="text/javascript" src="js/small-menu.js"></script>
<script type="text/javascript" src="js/jquery.carouFredSel-6.2.1-packed.js"></script>
<script type="text/javascript" src="js/jquery.mousewheel.min.js"></script>
<script type="text/javascript" src="js/jquery.touchSwipe.min.js"></script>
<script type="text/javascript" src="js/jquery.easing.1.3.js"></script>
<script type="text/javascript" src="js/jquery.myHint.js"></script>
<script type="text/javascript" src="js/jquery.vticker-min.js"></script>
<script type="text/javascript" src="php/scriptsData.php"></script>
<script type="text/javascript" src="js/jquery.prettyPhoto.js"></script>
<script type="text/javascript" src="js/jquery.remodal.js"></script>
<script type="text/javascript" src="http://www.parsecdn.com/js/parse-1.2.17.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<script type="text/javascript" src="js/registration.js"></script>
</body>
</html>