-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstudent_grades.html
35 lines (28 loc) · 1.19 KB
/
student_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
<html>
<body>
<center>
STUDENT GRADES
<!-- Form 2 -->
<div id="frm2">
<!-- Sends data to be processed to "data_process2.php" file by POST method -->
<form action="student_grades_data.php" method="POST">
<p>
<label>CWID:</label> <!-- Display "CWID:" -->
<input type="text" id="user" name="s_cwid" /> <!-- user input box -->
</p>
<p>
<input type="submit" id="btn" name="s_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>