-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (32 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>BSM - 기숙사 입사 체크 서비스</title>
<link href="./assets/style.css" rel="stylesheet" />
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/dayjs/1.11.10/dayjs.min.js"></script>
</head>
<body>
<div class="w-full flex items-center justify-center flex-col gap-12 py-10">
<table>
<caption>
기숙사 입사 현황
</caption>
<thead>
<tr>
<th>동 분류</th>
<th>방 번호</th>
<th>이름</th>
<th>입사 여부</th>
<th>입사 시간</th>
</tr>
</thead>
<tbody id="members"></tbody>
</table>
</div>
<script src="./scripts/view.js"></script>
</body>
</html>