-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathprofile.html
109 lines (103 loc) · 4.13 KB
/
profile.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Profile</title>
<link rel="shortcut icon" type="image/x-icon" href="images/techlogo.png" />
<link rel = "stylesheet" href = "styles.css" type ="text/css"/>
</head>
<body>
<img src = "images/techlogo.png" alt = "techlogo" id = "tech"/>
<nav id = "responsiveNav">
<div class = "hamburger">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
<ul class = "nav-links">
<li><a href = "index.html">Sign Up</a></li>
<li><a href = "routes.html">Routes</a></li>
<li><a href = "signin.html">Sign In</a></li>
<li><a href = "profile.html">Profile</a></li>
</ul>
</nav>
<div id = "content">
<nav id = "rNav" class="desktopNav">
<ul>
<li><a href = "index.html">Sign Up</a></li>
<li><a href = "routes.html">Routes</a></li>
<li><a href = "signin.html">Sign In</a></li>
<li><a href = "profile.html" class = "active">Profile</a></li>
</ul>
</nav>
<div id = "iForm" class="pForm">
<h1 id = "sTitle">Clubs?</h1>
<form>
<div class="row">
<select required class = "input">
<option disabled selected value> -- Select a Club -- </option>
<option>Alchemist</option>
<option>Anime</option>
<option>American Red Cross</option>
<option>Black Cultural Alliance</option>
<option>Care-to-Walk</option>
<option>Chess</option>
<option>Class of 2020</option>
<option>Class of 2021</option>
<option>Class of 2022</option>
<option>Class of 2023</option>
<option>Concert Choir</option>
<option>Environmental</option>
<option>FBLA</option>
<option>Film Production</option>
<option>French</option>
<option>German</option>
<option>Human Rights Coalition</option>
<option>Italian</option>
<option>Key</option>
<option>Mathletes</option>
<option>MediterrAsian</option>
<option>Mock Trial</option>
<option>Model UN</option>
<option>National Art Honor Society</option>
<option>National Honor Society</option>
<option>Newspaper</option>
<option>Painted Words</option>
<option>PUSH</option>
<option>Raider Academics</option>
<option>Robotix</option>
<option>Spanish</option>
<option>Table Tennis</option>
<option>Tech</option>
<option>Other</option>
</select>
</div>
<input id="submit_button" type="submit" value="Submit"/>
</form>
<ul id="clubList">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
<div id = "iRight">
<img src = "images/raiderbird.png" alt = "techlogo" id = "raider"/>
</div>
</div>
<script src = "app.js"></script>
</body>
</html>