-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprof_grades.html
38 lines (32 loc) · 1.46 KB
/
prof_grades.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
<html>
<body>
<center>
PROFESSOR GRADES
<!-- Form 2 -->
<div id="frm1">
<!-- Sends data to be processed to "data_process1.php" file by POST method -->
<form action="prof_grades_data.php" method="POST">
<p>
<label>Course Number:</label> <!-- Display "Course Number:" -->
<input type="text" id="user" name="p_courseNum" /> <!-- user input box -->
</p>
<p>
<label>Section Number:</label> <!-- Display "Section Number:" -->
<input type="text" id="user" name="p_sectionNum" /> <!-- user input box -->
</p>
<p>
<input type="submit" id="btn" name="p_login2" /> <!-- Submit button -->
</p>
</form>
</div>
<!-- Back button -->
<button onclick="goBack()">Go Back</button>
</center>
<!-- Function for Back button -->
<script>
function goBack() {
window.history.back()
}
</script>
</body>
</html>