-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathreg#2.html
58 lines (53 loc) · 2.58 KB
/
reg#2.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
47
48
49
50
51
52
53
54
55
56
57
58
<html>
<style>
.bg{
background-color: chocolate;
}
.font
{
font-weight: 200;
}
</style>
<head>
<title>Regisration Form 2</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body class = "bg" >
<header >
<a href ="" >
<h1 class = "text-center">Hurghada-grand-hotel</h1>
</a>
</header>
<form action="reg#3.html">
<div class=" container text-4xl text-left font-weight-bold" >reservation details</div>
<div class="container">
<div class="check-in date">
<label>check-in date</label>
<input type="date" placeholder="Enter check-in date " name ="start_date " required>
</div>
<div class="check-out date">
<label>check-out date</label>
<input type="date" placeholder="Enter check-out date " name ="end_date " required>
</div>
<div class="options">
<label class=" container text-4xl text-left font-weight-bold ">reservation options </label>
<select required>
<option disabled selected>Select reservation options </option>
<option>day use</option>
<option>shortstay(1-7 )nights</option>
<option> longstay (29)nights</option>
<option> vacation(more than month)</option>
</select>
</div>
<div>
<button type="button" class="btn btn-success">Save and Next </button>
</div>
</div>
</form>
</body>
</html>