-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathBooking
44 lines (38 loc) · 1.47 KB
/
Booking
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
<html>
<head>
<title>Sunshine Palace | Bookings</title>
<link rel="stylesheet" type="text/css" href="C:\Users\HP\Documents\HOTEL MANAGEMENT\css\formstyle.css">
</head>
<header>
<nav>
<h1>Sunshine Palace</h1>
<ul id="nav">
<li><a class="homeblack" href="index.html">Home</a></li>
<li><a class="homeblack" href="gallery.html">Services</a></li>
<li><a class="homeblack" href="tariff.html">History</a></li>
<li><a class="homeblack" href="about.html">Contact</a></li>
</ul>
</nav>
<header>
<div class="divider"> </div>
<div id="main">
<div id=Bookings">
<form action="bookform.php" method="post" onsubmit="return validate()">
<br>
First Name:<input id="firstn" type="text" name="fname" required>
<br>
Last Name:<input id="lastn" type="text" name="lname" required>
<br>
Email:<input id="mail" type="email" name="email" required>
<br>
Type of room:<select name="combo">
<option value="opt1">Economy</option>
<option value="opt2">Diamond</option>
<option value="opt3">Delux</option>
alert("Your name cannot be a number.");
return false;
}
}
</script>
</body>
</html>