-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprof_classes.html
36 lines (28 loc) · 1.21 KB
/
prof_classes.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
<html>
<body>
<center>
PROFESSOR CLASSES
<!-- Form 1 -->
<div id="frm1">
<!-- Sends data to be processed to "data_process1.php" file by POST method -->
<form action="prof_class_data.php" method="POST">
<p>
<label>SSN:</label> <!-- Display "SSN:" -->
<input type="text" id="user" name="prof_ssn" /> <!-- user input box -->
</p>
<p>
<input type="submit" id="btn" name="p_login1" /> <!-- 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>