-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (44 loc) · 1.69 KB
/
index.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>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>CRUD FROM API</title>
<link href="index.css" rel="stylesheet">
</head>
<body>
<nav class="nav-admin">
<div class="ggcl" href="#">ลงทะเบียนเลือกฝ่าย</div>
</nav>
<div class="container">
<div class="d-flex bd-highlight mb-3">
<div class="me-auto p-2 bd-highlight"><h2>ผู้สมัคร</div>
<div class="p-2 bd-highlight">
<button type="button" class="btn btn-secondary" onclick="showUserCreateBox()">REGISTER</button>
</div>
</div>
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th scope="col">รหัสนักศึกษา</th>
<th scope="col">ชื่อจริง</th>
<th scope="col">นามสกุล</th>
<th scope="col">ฝ่าย</th>
<th scope="col">แก้ไข/ลบ</th>
</tr>
</thead>
<tbody id="mytable">
<tr>
<th scope="row" colspan="5">Loading...</th>
</tr>
</tbody>
</table>
</div>
</div>
<script src="index.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/sweetalert2.all.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4" crossorigin="anonymous"></script>
</body>
</html>