-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (66 loc) · 1.95 KB
/
Copy pathindex.html
File metadata and controls
67 lines (66 loc) · 1.95 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<!-- bootraps -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9"
crossorigin="anonymous"
/>
</head>
<body>
<!-- code here -->
<div class="container">
<h1 class="text-center text-infor mb-3">Quản lý sinh viên</h1>
<!-- form -->
<form class="mb-3">
<!-- name -->
<div class="mb-3">
<label for="name" class="form-label">Tên</label>
<input type="text" id="name" class="form-control" />
</div>
<!-- birthday -->
<div class="mb-3">
<label for="birthday" class="form-label">Tên</label>
<input type="date" id="birthday" class="form-control" />
</div>
<!-- button submit -->
<button class="btn btn-primary">Thêm</button>
</form>
<!-- div thông báo -->
<div id="notification">
<!-- <div class="alert alert-sucess">thông báo nè</div> -->
</div>
<!-- table hiện thị danh sách sinh viên -->
<table class="table table-bordered table-hover">
<thead>
<tr>
<th>STT</th>
<th>Tên</th>
<th>Ngày sinh</th>
<th>Hành động</th>
</tr>
</thead>
<tbody>
<!-- <tr>
<td>1</td>
<td>Hùng</td>
<td>22-04-1999</td>
<td>
<button class="btn btn-danger btn-sm btn-remove" data-id="SE1">
Xóa
</button>
</td>
</tr> -->
</tbody>
</table>
</div>
<!-- code here -->
<!-- script -->
<script src="./index.js"></script>
</body>
</html>