-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpassenger.html
66 lines (52 loc) · 2.65 KB
/
passenger.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
<!DOCTYPE html>
<html>
<head>
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Import materialize.css-->
<link type="text/css" rel="stylesheet" href="materialize.min.css" media="screen,projection"/>
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body style='background-image:url("back.png");'>
<div >
<h1 class="left-align blue lighten-3" style="margin-top: 0%; padding-bottom:1%; padding-top:1%">UNITE</h1>
<div style="position: absolute; margin-left: 15% ;margin-top: 2%; margin-right: 20%;margin-bottom: 20%; width: 350px; height: 300px; padding:1%; background: rgba(255,255,255,1); border: 2px solid black; border-radius:20px;">
<h5 style="text-align:center; color: rgb(0,0,0);"> <strong>Enter Journey Details </strong></h5>
<div style="display: grid; grid-template-columns: auto auto ;">
<div class="row">
<div class="input-field col s6">
<input id="fromp" type="text" class="validate">
<label for="first_name">From</label>
</div>
<div class="input-field col s6">
<input id="top" type="text" class="validate">
<label for="last_name">To</label>
</div>
</div><br>
<div class="input-field col s12 " style="margin-top:-2%">
<input id="timep" type="time" class="validate">
<label class="active" for="first_name2">Time </label>
</div>
</div>
<div >
<button id="passenger_r_b" class="btn waves-effect waves-light blue darken-3 " style="margin-left: 40%; margin-top: 2%;">Request</button>
</div>
</div>
</div>
</div>
<!--JavaScript at end of body for optimized loading-->
<script type="text/javascript" src="materialize.min.js"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script type="text/javascript" src="js/login.js"></script>
<script>
// function activatePlacesSearch(){
// var inputf = document.getElementById('fromp');
// var autocompletef = new google.maps.places.Autocomplete(inputf);
// var inputt = document.getElementById('top');
// var autocomplete = new google.maps.places.Autocomplete(inputt);
// }
// </script>
<!-- <script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAlUWuuk2UB2Y-h58wS7F1K6D_NhYCQMV4&libraries=places&callback=activatePlacesSearch"></script> -->
</body>
</html>