-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReservation.html
More file actions
43 lines (43 loc) · 1.38 KB
/
Reservation.html
File metadata and controls
43 lines (43 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>숙소 예약</h1>
<form action="#"></form>
<h2>신상 정보</h2>
<div>
<label for="name">이름 : </label>
<input type="text" id="name" placeholder="이름을 입력하세요" required>
</div>
<div>
<label for="e-mail">이메일 : </label>
<input type="text" id="e-mail" placeholder="이메일을 입력하세요" required>
</div>
<div>
<label for="profile">예약자 사진 : </label>
<input type="file">
</div>
<hr>
<h2>상세 정보</h2>
<h3>선호 객실 타입</h3>
<label for="city">도시뷰 : </label>
<input type="checkbox" name="city" id="city" value="city">
<label for="lake">레이크뷰 : </label>
<input type="checkbox" name="lake" id="lake" value="city">
<label for="mountain">마운틴뷰 : </label>
<input type="checkbox" name="mountain" id="mountain" value="mountain">
<h2>동행자 정보</h2>
<label for="people">인원수 : </label>
<input type="number" name="people" id="people" max="3" min="0">
<h1>기타</h1>
<label for="More">요청사항 : </label>
<textarea name="More" id="More" cols="30" rows="10"></textarea>
<hr>
<button>전송</button>
</form>
</body>
</html>