-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (85 loc) · 3.05 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Sign-Up</title>
<link rel="stylesheet" type="text/css" href="css/stylesheet.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<script type="text/javascript" src="js/script.js"></script>
</head>
<body>
<div id="header">
<img src="assets/logo-white.png" id="logo">
</div>
<div id="content" overflow-y="auto">
<form id="personal_data" class="form-horizontal" role="form">
<div class="form-group">
<label for="uniqname" class="col-lg-2 control-label">Uniqname</label>
<div class="col-lg-5">
<input type="text" class="form-control" id="uniqname" placeholder="Enter Uniqname">
</div>
</div>
<div class="form-group">
<label for="name" class="col-lg-2 control-label">Name</label>
<div class="col-lg-5">
<input type="text" class="form-control" id="name" placeholder="Enter Name">
</div>
</div>
<div class="form-group">
<label for="yearSelect" class="col-lg-2 control-label">Year</label>
<div class="col-lg-3">
<select id="yearSelect" class="form-control">
<option>Freshman</option>
<option>Sophomore</option>
<option>Junior</option>
<option>Senior</option>
</select>
</div>
</div>
<div class="form-group">
<label for="majorSelect" class="col-lg-2 control-label">Major</label>
<div class="col-lg-3">
<select id="majorSelect" class="form-control">
<option>CS-Eng</option>
<option>EE-Eng</option>
<option>CE-Eng</option>
<option>Other-Eng</option>
<option>CS-LSA</option>
<option>Other-LSA</option>
<option>Ross</option>
<option>Art/Music/Architecture</option>
<option>Other</option>
<option>Undecided</option>
</select>
</div>
</div>
<div class="form-group">
<label for="interests" class="col-lg-2 control-label">What are you interested in?</label>
<div class="col-lg-5">
<div class="checkbox" name="interests">
<h4><input type="checkbox" value="How to program">How to program</h4>
</div>
<div class="checkbox" name="interests">
<h4><input type="checkbox" value="How to create your own website">How to create your own website</h4>
</div>
<div class="checkbox" name="interests">
<h4><input type="checkbox" value="How to write iOS/Android apps">How to write iOS/Android apps</h4>
</div>
<div class="checkbox" inamed="interests">
<h4><input type="checkbox" value="How to do things with hardware">How to do things with hardware</h4>
</div>
<div class="checkbox" name="interests">
<h4><input type="checkbox" value="Other">Other</h4>
</div>
</div>
</div>
<div class="form-group">
<div class="col-lg-offset-2 col-lg-10">
<button type="submit" class="btn btn-default" id="submit">Submit</button>
</div>
</div>
</form>
</div>
</body>
</html>