-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheck booking.html
More file actions
80 lines (80 loc) · 3.86 KB
/
check booking.html
File metadata and controls
80 lines (80 loc) · 3.86 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8">
<title>웹프로젝트</title>
<link rel="stylesheet" href="css/check booking.css">
<script type="text/javascript" src="js/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="js/check booking.js">
</script>
</head>
<body>
<header>
<a href="main_display.html"><img id="logotype" src="images/main_logo.JPG" alt="메인로고"></a>
<ul>
<li><a href="reason.html">reason</a></li>
<li><a href="notice.html">notice</a></li>
<li><a href="rooms.html">rooms</a></li>
<li><a href="booking.html">booking</a></li>
<li><a href="check booking.html">check booking</a></li>
<li><a href="q&a.php">q&a</a></li>
</ul>
</header>
<section>
<div id="sectionpart">
<h2>예약확인 <span id="smalltext">(check booking)</span></h2>
<form action="checkbooking.php" method="post" id="checkform">
<table cellspacing="0">
<colgroup>
<col width="20%">
<col width="80%">
</colgroup>
<tbody>
<tr>
<th>예약자명</th>
<td><input type="text" name="guestname" id="user_name" class="inputtype" autocomplete="off" value="" autofocus></td>
</tr>
<tr>
<th>연락처</th>
<td>
<select name="guestphonenumber1" class="selecttype1">
<option value="010">010</option>
<option value="011">011</option>
<option value="016">016</option>
<option value="017">017</option>
<option value="018">018</option>
<option value="019">019</option>
</select>
<input type="text" name="guestphonenumber2" autocomplete="off" maxlength="4" id="user_p1" class="inputtype" value="">
<input type="text" name="guestphonenumber3" autocomplete="off" maxlength="4" id="user_p2" class="inputtype" value="">
</td>
</tr>
<tr>
<th>예약번호</th>
<td><input type="text" name="guestnumber" autocomplete="off" maxlength="8" id="user_booknum" class="inputtype" value=""><span style="font-size:small; font-family:none"> (예약번호는 핸드폰 번호 뒤8자리)</span></td>
</tr>
</tbody>
<tfoot>
<td class="tablebottom"></td>
<td class="tablebottom">
<input type="hidden" name="namedata" id="guestname" value="">
<input type="hidden" name="bookdata" id="bookingnumber" value="">
<input type="submit" value="예약확인" class="buttontype">
<input type="button" onclick="reloading();" value="취소" class="buttontype">
</td>
</tfoot>
</table>
</form>
</div>
</section>
<footer>
<ul>
<li>주소 : 공주대학교 천안공과대학 8층</li>
<li>대표 : 손원주</li>
<li>전화번호 : 010-5157-9214</li>
<li>이메일 : sonwonjoo@naver.com</li>
<li>Copyright ⓒ REASON All Right Reserved</li>
</ul>
</footer>
</body>
</html>