-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrideconf.html
More file actions
82 lines (64 loc) · 3.84 KB
/
rideconf.html
File metadata and controls
82 lines (64 loc) · 3.84 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html>
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=yes">
<!-- Bootstrap and CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
<link rel="stylesheet" href="main.css" />
<!-- auwesome font -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>
Ride Confirmation Page
</title>
</head>
<body>
<div class="container main gradient">
<div class="background d-flex align-items-center justify-content-center">
<div class="p-1 m-2">
<div class="alert alert-info text-center" style="background-color: transparent; border: none;">
<h1 class="display-5"><strong>Alright!</strong></h1>
<h4 class="m-1"> Just To Be Sure:</h4>
</div>
</div>
</div>
<!--Addresses -->
<div class="container">
<div class="col-12 m-1 p-1 text-center">
<h5 style="margin: 1.25rem .25rem">Driver Name
Will Pick You Up At:</h5>
<input id="starting" name="starting" type="text" placeholder="starting-address" style="margin-left: 2px" class="input-xlarge">
</div>
<div class="col-12 m-1 p-1 text-center">
<h5 class="text-center">And Take You To:</h5>
<input id="destination" name="destination" type="text" placeholder="destination address" style="margin-left: 5px" class="input-xlarge align-self-center">
</div>
<div class="col-12">
<iframe width="100%" height="200px;" frameborder="0" style="border:0" src="https://www.google.com/maps/embed/v1/directions?origin=place_id:ChIJLwPMoJm1RIYRetVp1EtGm10&destination=place_id:ChIJvYfQGuO0RIYRHFPiT-VMZNY&key=AIzaSyCz_oe1ni-wHEMJQczM9Mh4M3bct6QY5Ew" allowfullscreen></iframe>
</iframe>
</div>
</div>
</section>
<div class="row m-2 p-0">
<div class="col d-flex flex-column align-items-center justify-content-around nav">
<button type="button" class="btn btn-outline-danger btn-secondary confnavbtn"><a href="finalrideconf.html">Book Ride</a></button>
<button type="button" class="btn btn-outline-danger btn-secondary confnavbtn"><a href="ridesched.html">Make Changes</a></button>
<button type="button" class="btn btn-outline-warning btn-primary confnavbtn">Options</button>
<button type="button" class="btn btn-outline-danger btn-primary confnavbtn"><a href="ridesched.html">Cancel</a></button>
</div>
</div>
<!-- <div class="row m-0 p-0">
<div class="col d-flex flex-column background align-items-center justify-content-around nav">
<button type="button" class="btn btn-outline-danger btn-primary confnavbtn" style="height: 75px;"><a href="finalrideconf.html">YES!</a></button>
<button type="button" class="btn btn-outline-danger confnavbtn"><a href="ridesched.html">Make Changes</a></button>
<button type="button" class="btn btn-outline-warning confnavbtn">Cancel</button>
<button type="button" class="btn btn-outline-danger confnavbtn">Settings</button>
</div>
</div> -->
</div>
<script src="https://code.jquery.com/jquery-3.1.1.slim.min.js" integrity="sha384-A7FZj7v+d/sdmMqp/nOQwliLvUsJfDHW+k9Omg/a/EheAdgtzNs3hpfag6Ed950n" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js" integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn" crossorigin="anonymous"></script>
</body>
</html>