-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGuide_search_page.php
More file actions
62 lines (42 loc) · 2.08 KB
/
Guide_search_page.php
File metadata and controls
62 lines (42 loc) · 2.08 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
<!DOCTYPE html>
<html>
<head>
<title>Search Tour Guide</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/top_bar.css">
<link rel="stylesheet" href="css/footer.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/guide_searchpage.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
</head>
<body>
<?php include('inc/top_bar.php'); ?>
<div class="header" >
<form>
<div class="container">
<div class="form-box">
<h1>Search Tour Guide</h1>
<input class="search destinations" type="text" name="destinations" id="" placeholder="Destinations">
<input class="search arrivaldate" type="text" name="arrivaldate" id="" placeholder="Arrival_Date(DD/MM/YY)">
<input class="search departuredate" type="text" name="departuredate" id="" placeholder="Departure_Date(DD/MM/YY)">
<input class="search numoftourist" type="text" name="numoftourist" id="" placeholder="Number_Of_Tourist">
<button class="Search-btn" type="button">SEARCH</button>
<br><br>
<div class="check-box">
<input type="checkbox" name="" id="Guide with vehicles">
<label for="Guide with vehicles">Guide with vehicles</label>
<input type="checkbox" name="" id="Round Trip Guides">
<label for="Round Trip Guides">Round Trip Guides</label>
<input type="checkbox" name="" id="Per-Day Guides">
<label for="Per-Day Guides">Per-Day Guides</label>
</div><!--check-box-->
<br><br><br><br>
<button class="seeall-button">SEE ALL Guides</button>
</div><!--form-box-->
</form>
</div>
</div><!--header-->
<?php include('inc/footer.php'); ?>
</body>
</html>