-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathadd_student.html
50 lines (47 loc) · 1.61 KB
/
add_student.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>E-Learning</title>
</head>
<body>
<a href="home.html">
<button type="button" class="btn">
Home
</button>
</a>
<form>
<table>
<tr>
<td>First Name</td>
<td><input type="text" id="u-name" name="firstName"></td>
</tr>
<tr>
<td>Middle Name</td>
<td><input type="text" id="u-name" name="middleName"></td>
</tr>
<tr>
<td>Last Name</td>
<td><input type="text" id="u-name" name="lastName"></td>
</tr>
<tr>
<td>Birthdate</td>
<td><input type="date" id="bday" name="birthDay"></td>
</tr>
<tr>
<td>Phone</td>
<td><input type="tel" id="p-number" name="phoneNumber"></td>
</tr>
<tr>
<td><button type="button" class="btn"><input type="submit"></button></td>
</tr>
</table>
</form>
</body>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"
integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI"
crossorigin="anonymous"></script>
</html>