-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInfo.html
More file actions
179 lines (168 loc) · 5.74 KB
/
Info.html
File metadata and controls
179 lines (168 loc) · 5.74 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
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
<!DOCTYPE html>
<html>
<head>
<title>Info</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<div class="left">
<li>
<A HREF ="Homepage.html"> Home</A>
</li>
<li>
<A HREF ="Dashboard.html"> Dashboard</A>
</li>
<li>
<A HREF ="Class.html"> Classes</A>
</li>
</div>
<div class="right">
<li>
<A HREF ="Info.html"> View Profile</A>
<A HREF ="Homepage.html"> Log Out</A>
</li>
</div>
<div class="hero">
<div class="info-box">
<h1 id="fancy">Profile</h1>
<p>Edit this page to change what groups you are looking for.</p>
<h2>Bio</h2>
<table class="profile-table">
<tr>
<td>First Name:</td>
<td>John</td>
<td><button class="edit-button">Edit</button></td>
</tr>
<tr>
<td>Last Name:</td>
<td>Doe</td>
<td><button class="edit-button">Edit</button></td>
</tr>
<tr>
<td>School:</td>
<td>Georgia Tech</td>
<td><button class="edit-button">Edit</button></td>
</tr>
<tr>
<td>Major:</td>
<td>Industrial Engineering</td>
<td><button class="edit-button">Edit</button></td>
</tr>
<tr>
<td>Bio:</td>
<td>Hello, my name is John!</td>
<td><button class="edit-button">Edit</button></td>
</tr>
</table>
<!------------------------------------------------------------------------->
<!--CLASSES-->
<!------------------------------------------------------------------------->
<h2>Classes</h2>
<h3>Your Classes</h3>
<table class="class-table">
<tr>
<th>Subject</th>
<th>Course Number</th>
<th>Instructor</th>
<th>Section</th>
<th>Edit</th>
</tr>
<tr>
<td>CS</td>
<td>1331</td>
<td>McDaniel</td>
<td>A</td>
<td>
<button class="edit-button">Edit</button>
</td>
</tr>
<tr>
<td>MATH</td>
<td>3012</td>
<td>Prag</td>
<td>A</td>
<td>
<button class="edit-button">Edit</button>
</td>
</tr>
</table>
<h3>Add a New Class</h3>
<form class="addform">
<table>
<tr>
<td><label for="subject">Subject/Department:</label></td>
<td><input type="text" id="subject" name="subject" required></td>
</tr>
<tr>
<td><label for="number">Course Number:</label></td>
<td><input type="text" id="number" name="number" required></td>
</tr>
<tr>
<td><label for="instructor">Instructor:</label></td>
<td><input type="text" id="instructor" name="instructor"></td>
</tr>
<tr>
<td><label for="section">Section:</label></td>
<td><input type="text" id="section" name="section"></td>
</tr>
</table>
<input type="submit" class="button">
</form>
<!------------------------------------------------------------------------->
<!--HOBBIES AND INTERESTS-->
<!------------------------------------------------------------------------->
<h2>Hobbies and Interests</h2>
<h3>Your Interests</h3>
<table class="class-table">
<tr>
<th>Interest</th>
<th>Specialty</th>
<th>Proficiency</th>
<th>Edit</th>
</tr>
<tr>
<td>Baking</td>
<td>Italian</td>
<td>Novice</td>
<td>
<button class="edit-button">Edit</button>
</td>
</tr>
</table>
<h3>Add a New Interest</h3>
<form class="addform">
<table>
<tr>
<td><label for="interest">Interest:</label></td>
<td><input type="text" id="interest" name="interest" required></td>
</tr>
<tr>
<td><label for="specialty">Speciality:</label></td>
<td><input type="text" id="specialty" name="specialty"></td>
</tr>
<tr>
<td><label for="proficiency">Proficiency:</label></td>
<td>
<select id="proficiency" name="proficiency">
<option value="select">Select</option>
<option value="basic">Fundamental Awareness (basic knowledge)</option>
<option value="novice">Novice (limited experience)</option>
<option value="intermediate">Intermediate (practical application)</option>
<option value="advanced">Advanced (applied theory)</option>
<option value="expert">Expert (recognized authority)</option>
</select>
</td>
</tr>
</table>
<input type="submit" class="button">
</form>
<br>
<br>
<br>
<form action="Dashboard.html">
<button class = "button">Return to Dashboard</button>
</form>
</div>
</div>
</body>
</html>