-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstudent.html
More file actions
52 lines (41 loc) · 1.19 KB
/
Copy pathstudent.html
File metadata and controls
52 lines (41 loc) · 1.19 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
<html>
<title>Department</title>
<body>
<center>
<h1>Student Information</h1>
<form action="student.jsp" method="post">
<table border="0">
<tr height="30">
<td>Student ID:</td>
<td><input type="text" id="studentid" name="studentid"></td>
</tr>
<tr height="30">
<td>Date of Birth:</td>
<td><input type="text" id="dob" name="dob"></td>
</tr>
<tr height="30">
<td>Student Name:</td>
<td><input type="text" id="studentname" name="studentname"></td>
</tr>
<tr height="30">
<td>Program ID:</td>
<td><input type="text" id="programid" name="programid"></td>
</tr>
<tr height="30">
<td>Cell No:</td>
<td><input type="text" id="cellno" name="cellno"></td>
</tr>
<tr height="30" align="center">
<td colspan="2">
<input type="submit" value="Insert" name="insertB">
<input type="submit" value="Search" name="searchB">
<input type="submit" value="Update" name="updateB">
<input type="submit" value="Delete" name="deleteB">
</td>
</tr>
</table>
</form>
<a href="dashboard1.jsp">Back to Dashboard</a>
</center>
</body>
</html>