-
Notifications
You must be signed in to change notification settings - Fork 0
/
join.html
52 lines (52 loc) · 1.63 KB
/
join.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
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>BSM - 기숙사 입사 체크 서비스</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script>
tailwind.config = {
theme: {
extend: {},
},
};
</script>
</head>
<body>
<form
onsubmit="return preventReload(event)"
id="info--form"
class="flex flex-col gap-8 justify-center items-center"
>
<div
id="info--box"
class="w-full h-[100vh] flex items-center justify-center flex-col gap-12"
>
<div class="flex flex-col gap-1">
<h1 class="text-3xl font-semibold">
👋 환영해요, <span id="user--name"></span>님!
</h1>
<span class="text-lg text-gray-500 font-semibold"
>기숙사에 입소하셨나요?</span
>
</div>
<div class="flex flex-col items-center justify-center gap-2">
<span class="text-lg font-medium text-gray-400">
<span id="user--dormitoryType"></span>동
<span id="user--roomNumber"></span>호
<span id="user--subName"></span>
</span>
<button
id="checkin--button"
class="w-fit py-2 px-6 bg-[#73AEE3] rounded-lg text-white font-semibold disabled:bg-gray-300"
>
입사 체크
</button>
</div>
</div>
</form>
<script src="./scripts/join.js"></script>
</body>
</html>