-
Notifications
You must be signed in to change notification settings - Fork 0
/
joinus.php
138 lines (131 loc) · 7.6 KB
/
joinus.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/css/bootstrap.min.css" integrity="sha384-xOolHFLEh07PJGoPkLv1IbcEPTNtaed2xpHsD9ESMhqIYd0nLMwNLD69Npy4HI+N" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<title>Host</title>
</head>
<body>
<div id="home">
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<img class="logo" src="./images/backpacker.png" alt="">
<div class="navbar-brand-group">
<a class="navbar-brand" href="#">BagPackers</a>
</div>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-toggle="dropdown" aria-expanded="false">
Top cities
</a>
<div class="dropdown-menu" id="topCitiesDropdown">
<a class="dropdown-item" href="#">Delhi</a>
<a class="dropdown-item" href="#">Mumbai</a>
<a class="dropdown-item" href="#">Kolkata</a>
<a class="dropdown-item" href="#">Chennai</a>
<a class="dropdown-item" href="#">Banglore</a>
<a class="dropdown-item" href="#">Hyderabad</a>
<a class="dropdown-item" href="#">Pune</a>
<a class="dropdown-item" href="#">Mysore</a>
<a class="dropdown-item" href="#">Jaipur</a>
</div>
</li>
<li class="nav-item active">
<a class="nav-link" href="#">Services <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About us</a>
</li>
<button class="btn my-2 my-sm-0" type="submit">Become a partner</button>
</ul>
</div>
</nav>
<!--main host body-->
<div id="carouselExampleCaptions" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleCaptions" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleCaptions" data-slide-to="1"></li>
<li data-target="#carouselExampleCaptions" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="./images/carousel-2.jpg" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block">
<h5>Become a host</h5>
<p>Some representative placeholder content for the first slide.</p>
</div>
</div>
<div class="carousel-item">
<img src="./images/carousel-3.jpg" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block">
<h5>Meet new people</h5>
<p>Some representative placeholder content for the second slide.</p>
</div>
</div>
<div class="carousel-item">
<img src="./images/carousel.jpg" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block">
<h5>Travel without luggage</h5>
<p>Some representative placeholder content for the third slide.</p>
</div>
</div>
</div>
<button class="carousel-control-prev" type="button" data-target="#carouselExampleCaptions" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-target="#carouselExampleCaptions" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</button>
</div>
<div class="bottom-container row">
<div class="col-6">
<div class="content">
Got extra space to spare for luggage storage? Join our Bagpackers partner program and start earning some extra moolah! Imagine,
you can turn that empty corner into a money-making hotspot. But hey, being a partner comes with its perks. You get the authority
to casually ask tourists to do the 'luggage reveal' during drop-off.
</div>
<div class="content">
It's like being a detective, but with suitcases! And guess
what? Our super-duper online money transfer system will automatically sprinkle those earnings into your bank account on a monthly
or weekly basis. Cha-ching! So, why wait? Join us and let's turn your extra space into a fun and profitable adventure!
</div>
</div>
<div class="form-inputs col-6">
<h2>Contact Form</h2>
<form id="myForm" method="post" action="https://script.google.com/macros/s/AKfycbzYDXRK0Or23j5Kqdl-zk9-SEg-VxYVuvtFXf_hdbZKvs8TTxIamkUUql9lHyPS0VrG/exec">
<div class="row">
<div class="form-group col-6">
<label for="fullName">FULL NAME</label>
<input type="text" class="form-control" id="full_name" name="full_name" required>
</div>
<div class="form-group col-6">
<label for="region">REGION</label>
<input type="text" class="form-control" id="region" name="region" required>
</div>
</div>
<div class="form-group">
<label for="mobileNumber">MOBILE NUMBER</label>
<input type="text" class="form-control" id="mobilenumber" name="mobilenumber" required>
</div>
<div class="form-group">
<label for="address">ADDRESS</label>
<input type="text" class="form-control" id="address" name="address" required>
<!-- <textarea class="form-control" id="address" name="address" required></textarea> -->
</div>
<button type="submit" id="submit" class="cta-btn">Send your request</button>
</form>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.5.1/dist/jquery.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/js/bootstrap.min.js" integrity="sha384-+sLIOodYLS7CIrQpBjl+C7nPvqq+FbNUBDunl/OZv93DB7Ln/533i8e/mZXLi/P+" crossorigin="anonymous"></script>
</body>
</html>