-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
132 lines (129 loc) · 5.48 KB
/
form.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
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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Favicon -->
<link rel="shortcut icon" type="image/png" href="public/images/favicon.png"/>
<!-- Bootstrap CSS and dependent ones-->
<link rel="stylesheet" href="public/css/bootstrap.min.css">
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Poppins:600,700" rel="stylesheet">
<link rel="stylesheet" media="screen" href="https://fontlibrary.org/face/jellee-typeface" type="text/css"/>
<!-- local external stylesheet -->
<link rel="stylesheet" href="public/css/main.css">
<title>Go There</title>
</head>
<body>
<div class="main">
<div id="map"></div>
<div class="wrap-form">
<form method="POST" id="go-form">
<div id="form-title"><p id="go">Go<p><p id="there">There<p></div>
<div class="form-row">
<div id="loc" class="form-group form-inline">
<span class="place-label topic">Places</span>
<span id="error"></span>
<span class="place-label">Origin</span>
<select id="loc1" name="loc1" class="loc-dropdown">
<option selected>Choose...</option>
<option>Ahmedguda</option>
<option>Allwyn Colony</option>
<option>Ameenpur</option>
<option>Ameerpet</option>
<option>Bachupally</option>
<option>Begumpet</option>
<option>Borabanda</option>
<option>Bowenpally</option>
<option>Bhel</option>
<option>Brundavan Colony</option>
<option>Chandanagar</option>
<option>Fatehnagar</option>
<option>Gachibowli</option>
<option>Gautam Nagar</option>
<option>Hafeezpet</option>
<option>Hitec City</option>
<option>Hydernagar</option>
<option>Jubilee Hills</option>
<option>Kandi</option>
<option>Kompally</option>
<option>Kondapur</option>
<option>Kukatpally</option>
<option>Lingampally</option>
<option>Madhapur</option>
<option>Miyapur</option>
<option>Nallagandla</option>
<option>Nizampet</option>
<option>Patancheru</option>
<option>Patel Nagar</option>
<option>Sai Nagar</option>
<option>Sanath Nagar</option>
<option>Sangareddy</option>
<option>Shamshiguda</option>
<option>Siva Nagar</option>
<option>Yeddumailaram</option>
</select>
<span class="place-label">Add Destinations</span>
<select id="loc2" name="loc2" class="loc-dropdown">
<option selected>Choose...</option>
<option>Ahmedguda</option>
<option>Allwyn Colony</option>
<option>Ameenpur</option>
<option>Ameerpet</option>
<option>Bachupally</option>
<option>Begumpet</option>
<option>Borabanda</option>
<option>Bowenpally</option>
<option>Bhel</option>
<option>Brundavan Colony</option>
<option>Chandanagar</option>
<option>Fatehnagar</option>
<option>Gachibowli</option>
<option>Gautam Nagar</option>
<option>Hafeezpet</option>
<option>Hitec City</option>
<option>Hydernagar</option>
<option>Jubilee Hills</option>
<option>Kandi</option>
<option>Kompally</option>
<option>Kondapur</option>
<option>Kukatpally</option>
<option>Lingampally</option>
<option>Madhapur</option>
<option>Miyapur</option>
<option>Nallagandla</option>
<option>Nizampet</option>
<option>Patancheru</option>
<option>Patel Nagar</option>
<option>Sai Nagar</option>
<option>Sanath Nagar</option>
<option>Sangareddy</option>
<option>Shamshiguda</option>
<option>Siva Nagar</option>
<option>Yeddumailaram</option>
</select>
<button id="add" class="btn btn-success add-more" type="button">+</button>
</div>
</div>
<div class="form-btn-container" type="submit">
<div class="wrap-form-btn">
<div class="form-bgbtn"></div>
<button class="form-btn">
Go!
</button>
</div>
</div>
</form>
</div>
</div>
<!-- jQuery first(not slim), then Popper.js, then Bootstrap JS -->
<script src="public/js/jquery-3.3.1.min.js"></script>
<script src="public/js/popper.min.js"></script>
<script src="public/js/bootstrap.min.js"></script>
<script src="public/js/fields.js"></script>
<script src="public/js/submit.js"></script>
<script src="public/js/maps.js"></script>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBisw5R9LJpmpp8gfxybNUVlUR7auQsTGw&callback=mapCover"></script>
</body>
</html>