forked from mohitgoyal18/Hotel-Management-System
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbook.html
More file actions
143 lines (131 loc) · 4.81 KB
/
book.html
File metadata and controls
143 lines (131 loc) · 4.81 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE>
<html>
<head>
<title>Booking</title>
<link rel="stylesheet" type="text/css" href="book.css"/>
<link rel="stylesheet" type="text/css" href="dhtmlxcalendar.css"/>
<script src="dhtmlxcalendar.js"></script>
<style>
#calendar,
#calendar2,
#calendar3,
#calendar4,
{
border: 1px solid #909090;
font-family: Tahoma;
font-size: 12px;
}
</style>
<script>
var myCalendar;
function doOnLoad()
{
myCalendar = new dhtmlXCalendarObject(["calendar","calendar2","calendar3","calendar4",]);
}
</script>
</head>
<body onload="doOnLoad();">
<div id="holder"><a href="https://www.co.in"><img src="images/22.jpg" width="200px" height="100px"/></a>
<div id="header">
<ul>
<li><a href="login.html">Login</a></li>
<li><a href="overview.html">Overview</a></li>
<li><a href="rest/index.html">Restaurant</a></li>
<li><a href="book.html">Booking</a></li>
<li><a href="index.html">Home</a></li>
</ul>
</div><!--header -->
<div id="ab">
<div id="check">
<br>
<form action="check.php" method="post">
<div style="position:relative;height:80px;">
<label for="in">Check in:</label>
<input id="calendar" name="in" placeholder="2015-06-02" required="" type="text"> <br><br>
<label for="in">Check out:</label>
<input id="calendar2" name="out" placeholder="2015-06-05" required="" type="text"> <br><br>
</div>
Room Type:
<select name="room">
<option value="A/C">A/C</option>
<option value="Non-A/C">Non-A/C</option>
</select>
<select name="type">
<option value="single">Single</option>
<option value="double">Double</option>
<option value="three">Three</option>
</select>
<br><br>
<input type="submit" name="submit" value="submit" />
<input type="reset" name="reset" value="Reset" />
</form>
</div><!--chack -->
<div id="chat">
<form action="" method="post">
<label for="in">Chat</label>
<input id="chat" name="chat" placeholder="message" required="">
<input type="submit" name="submit" value="submit" />
</form>
</div><!--chat-->
<br>
<br>
<div id="fd">
<form action="feedback.php" method="post">
<label for="in">Feedback</label>
<input id="fd" name="feed" placeholder="Type message" required="">
<input type="submit" name="submit" value="submit" />
</form>
</div><!--fd-->
</div><!--ab-->
<div id="book">
<h1>Booking</h1>
<div id="a1">
<p> </p>
<form action="book.php" method="post">
<label for="name">Name:</label>
<input id="name" name="name" placeholder="Full Name" required="" tabindex="1" type="text"><br><br>
<label for="email">Email</label>
<input id="email" name="email" placeholder="Email" required="" type="email"><br><br>
<label for="mobile">Mobile No:</label>
<input id="phone" name="mobile" placeholder="Number" required="" type="text"> <br><br>
<div style="position:relative;height:80px;">
<label for="in">Check in:</label>
<input id="calendar3" name="in" placeholder="2015-06-02" required="" type="text"> <br><br>
<label for="out">Check out:</label>
<input id="calendar4" name="out" placeholder="2015-06-05" required="" type="text"> <br><br>
</div>
Room Type:
<select name="room">
<option value="A/C">A/C</option>
<option value="Non-A/C">Non-A/C</option>
</select>
<select name="type">
<option value="single">Single</option>
<option value="double">Double</option>
<option value="three">Three</option>
</select>
<br/><br/><br/>
<a href="payment.html"><input type="submit" name="submit" value="Book"/></a>
<input type="reset" name="reset" value="Reset" />
</form>
</div><!--a1-->
</div><!--book-->
<div id="rest">
<h1>Special Dishes</h1>
<div id="a3">
</div>
<div id="b3">
</div>
<div id="c3">
</div>
</div><!--rest-->
</div><!--holder-->
</body>
</html>