-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html
208 lines (188 loc) · 9.51 KB
/
index2.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
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
<!DOCTYPE html>
<html lang="en">
<meta charset="utf-8">
<meta name="author" content="Rohan Khanna, Lavisha Agarwal, Grace Wehner">
<meta name="description" content="CS 411 schedule maker">
<title> Schedule Maker </title>
<center><h1>CS@Illinois Schedule Maker</h1></center>
<body bgcolor = "#e6f7ff">
<center>Welcome to CS411 Schedule Maker!</center>
<center><h3>Hi There ! Please add your information to the database </h3></center>
<div style = "float:left">
<h3>Add Information about the courses you have taken so far </h3>
<form action="add.php" method="get" target="_blank">
<input type="number" name="Credits" value="" style="width: 143px"/> Credits you have taken so far <br/>
<!-- <input type="number" name="numberofcourses" value="" style="width: 143px"/> Please enter the number of CS courses you have taken so far.
<br/>
<input type="text" name="coursestaken" value="" style="width: 143px"/>
Please enter the courses and separate them by a space.
<br/>-->
<select name="currentsem" style ="width: 150px">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
</select>Current Semester (Select a semester from 1 to 8)<br/>
<select name="FOS" style ="width: 150px">
<option value="Algorithms">Algorithms</option>
<option value="Software">Software</option>
<option value="Systems">Systems</option>
<option value="Data">Data (AI, Information systems)</option>
</select>Field of Study Interested in<br/>
<select name="Priority" style ="width: 150px">
<option value="L">To take courses that will help me learn more in my FOS</option>
<option value="G">To Graduate on time or early</option>
<option value="GPA">To score a high GPA</option>
</select>Priority<br/>
<input type="submit" value="Add">
</form>
<form action = "add_schedule.php" method="get" target="_blank">
<br><br>Add a semester information along with the courses you took in that semester <br><br>
<input type = "email" name = "add_email" value = "" > Email <br/>
<input type = "number" name = "add_semester" value = "" > Semester
<br/>
<input type = "number" name = "add_credit" value = "" > Credit Hours <br/>
<input type="number" name="numberofcourses" value="" > Please enter the number of CS courses you took in this semester
<br/>
<input type = "" name = "add_courses" value = "" > Courses Taken (Please seperate them with a space Eg. "173 225" without the quotes)<br/>
<input type = "number" step="0.01" name = "add_GPA" value = "" > GPA <br/>
<input type = "submit" value = "add">
</form>
<br>
<!--
<form action="modify_courses_taken.php" method="get" target="_blank">
Add courses that you have taken in the previous semesters.
<br/>
<input type="email" name="Email" value="" size=23px/> Email <br/>
<input type="number" name="numberofcourses" value="" style="width: 143px"/> Please enter the number of CS courses you want to add.
<br/>
<input type="text" name="coursestaken" value="" style="width: 143px"/>
Please enter the courses and separate them by a space.
<br/>
<input type="submit" value="Add">
</form>
-->
<br>
<br/>
<form action = "course_info.php" method = "get" target = "_blank" >
Add your opinion about a course<br><br>
<input type = "number" name = "course_name" value = ""> Course Number <br/>
<input type = "number" name = "course_usefulness" value = "" > Course Usefulness: 1 means not useful at all, 5 means very useful <br/>
<input type = "number" name = "course_difficulty" value = "" > Course Difficulty: 1 means not difficult at all, 5 means very difficult <br/>
<input type = "number" name = "course_workload" value = "" > Course Workload: 1 means not much work at all, 5 means a lot of work <br/>
<input type = "submit" value = "Add">
</form>
<br><br>
<h3> Delete data present in the database </h3>
<form action="delete.php" method="get" target="_blank">
Delete a user record<br><br>
<input type="email" name="Email" value=""/> Email <br/>
<input type="submit" value="Delete">
</form>
<form action = "delete_schedule.php" method="get" target="_blank">
<br><br>Delete a schedule and all the courses taken in that semester <br><br>
<input type = "email" name = "delete_email" value = "" > Email (illinois) <br/>
<input type = "number" name = "delete_semester" value = "" > Semester <br/>
<input type = "submit" value = "delete">
</form>
</div>
<div style = "float:right">
<h3> Modify data present in the database </h3>
<form action = "modify.php" method="get" target="_blank">
Modify the user information <br><br>
<input type="email" name="modify_email" value=""/> Email address for which you want to modify the information<br/>
<select name="modify_priority" style="width: 150px">
<option value="L">Learning</option>
<option value="G">Graduation</option>
<option value="GPA">GPA</option>
</select>Priority<br/>
<select name="modify_sem" style ="width: 150px">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
</select>Current Semester (Select a semester from 1 to 8)<br/>
<select name="modify_FOS" style ="width: 150px">
<option value="Algorithms">Algorithms</option>
<option value="Software">Software</option>
<option value="Systems">Systems</option>
<option value="Data">Data</option>
</select>Field of Study<br/>
<input type="number" name="modify_credits" value="" style="width: 143px"/> Credits <br/>
<input type="submit" value="Modify">
</form>
<br><br>
<!--
<form action = "modify_schedule.php" method="get" target="_blank">
Modify a previously saved schedule <br><br>
<input type="email" name="modify_email" value=""/> Email address for which you want to modify the information<br/>
<input type = "number" name = "modify_semester" value = "" > Semester for which you want to modify your schedule</br>
<input type = "" name = "modify_courses" value = "" > Courses Taken (Please seperate them with a space Eg. "173 225" without the quotes)</br>
<input type = "number" step="0.01" name = "modify_GPA" value = "" > GPA </br>
<input type = "number" name = "modify_credit" value = "" > Credit Hours </br>
<input type="submit" value="Modify">
</form> <br><br>
-->
<h3> Search for data present in the database </h3>
<form action ="search.php" method="get" target="_blank">
Search for students who are in the same field to get valuable inputs from them. <br><br>
<select name="FOS" style ="width: 150px">
<option value="Algorithms">Algorithms</option>
<option value="Software">Software</option>
<option value="Systems">Systems</option>
<option value="Data">Data</option>
</select> <br><br>
<input type="submit" value="Search">
</form>
<br/>
<form action ="search_schedule.php" method="get" target="_blank">
Search for schedules in the same specified semester. <br><br>
<input type="" name = "search_semester" value = ""/> Semester <br><br>
<input type="submit" value="Search">
</form>
<br/>
<form action ="search_db.php" method="get" target="_blank">
Search the database <br><br>
<input type="" name = "search_word" value = ""/> <br><br>
<input type="submit" value="Search">
</form>
<br><br>
<h3> Analysis</h3>
<form action="advanced.php" method="get" target="_blank">
Analyze my data and give me a schedule for next semester <br>
<input type = "email" name = "Email" value = "" > Email <br/>
<select name="Priority" style ="width: 150px">
<option value="Learning">Learning</option>
<option value="HighGpa">Getting a high GPA</option>
</select>Priority<br/>
<select name="credithours" style ="width: 150px">
<option value=12>Around 12</option>
<option value=15>Around 15</option>
<option value=18>Around 18</option>
</select>Credit Hours for the semester<br/>
<br>
<input type="submit" value="Analyse">
</form>
<br>
<br>
Get the schedules that people with my set of courses had
<form action = "get_existing_schedules.php" method = "get" target = "_blank">
<input type = "submit" value = "get">
</form>
<br>
Learn more about a course
<form action = "advanced2.php" method = "get" traget = "_blank"> <br>
<input type = "number" name = "Course" value = ""> Course Code <br/>
<input type = "submit" value = "Get Information">
</form>
</div>
</body>
</html>