-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfinalrideconf.html
More file actions
74 lines (64 loc) · 3.17 KB
/
finalrideconf.html
File metadata and controls
74 lines (64 loc) · 3.17 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
<!DOCTYPE html>
<html>
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- 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>
Final Ride Confirmation
</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>You Got It!</strong></h1>
<h4 class="m-1">We Are On Our Way</h4>
</div>
</div>
</div>
<!-- addresses -->
<div class="container">
<div class="col-12 m-1 p-1 gradient">
<div class="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:</h6>
<input id="destination" name="destination" type="text" placeholder="destination address" class="input-xlarge">
</div>
</div>
</div>
</section>
<div class="d-flex flex-column m-0 text-center align-self-center justify-content-center" style="background: linear-gradient(0deg, #6d6cf9, #c8e5ee); height: 130px">
<p class="h4">
DriverName will be there in N minutes.
</p>
<p class="h5">
You Will Recieve A Text When DriverName Is 5 Minutes Out.
</p>
</div>
<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 confnavbtn"><a href="ridesched.html" style="color: #5e31e0">Make Changes</a></button>
<div class="text-center">
<button type="button" class="btn btn-outline-warning confnavbtn">Cancel</button>
</div>
<div class="text-center">
<button type="button" class="btn btn-outline-danger confnavbtn">Settings</button>
</div>
</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>