-
Notifications
You must be signed in to change notification settings - Fork 1
/
entrance.html
46 lines (40 loc) · 2.2 KB
/
entrance.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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>일회성_메인페이지_초대된사람_입장전</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' href='entrance.css'>
<!-- <script src='entrance.js'></script> -->
</head>
<body>
<div class="inner">
<div class="title">
<h1>This is title</h1>
</div>
<form>
<div class="form-group">
<div class="miniFormBox">
<label for="page_pw">방 비밀번호</label>
<input type="password" id="page_pw" name="page_pw" placeholder="방 비밀번호를 입력하세요">
</div>
<div class="miniFormBox">
<label for="name">이름</label>
<!-- dto 에서 받을 변수명과 동일하게 name 값 지정-->
<input type="text" id="name" name="name" placeholder="이름을
입력하세요">
</div>
<div class="miniFormBox">
<label for="upw">비밀번호</label>
<!-- dto 에서 받을 변수명과 동일하게 name 값 지정-->
<input type="password" id="upw" name="upw" placeholder="비밀번호를
입력하세요"> </div>
</div>
<input type="hidden" id="url_id" name="url_id" th:value="${urlid}">
<input type="hidden" id="title" name="title" th:value="${title}">
<!-- model에서 보낸 title, urlid 출력-->
<button type="submit">입장하기</button>
</form>
</div>
</body>
</html>