-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbrokenindex.html
More file actions
110 lines (93 loc) · 4.87 KB
/
brokenindex.html
File metadata and controls
110 lines (93 loc) · 4.87 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
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
<!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>
</title>
</head>
<body>
<!-- Practice buttons -->
<button type="button" class="btn btn-outline-warning">Book Ride</button>
<button type="button" class="btn btn-outline-danger">Button</button>
<!--I think there will be room for garnish next to the address bars-->
<div class="container">
<div class="row" style="background: linear-gradient(-90deg, #0074D9, #39CCCC);">
<!-- starting address -->
<div class="col-8 offset-2 form-group p-1 m-2">
<label for="starting">Starting Address</label><br />
<input id="starting" name="starting" type="text" placeholder="starting-address"
class="input-xlarge"><br />
<!-- destination address-->
<label class="control-label">Destination</label><br>
<input id="destination" name="destination" type="text" placeholder="destination"
class="input-xlarge">
</div>
<!-- map -->
<div class="col-12">
<iframe width="100%" height="auto" 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> <!--can clean this up, don't need the "row" can just use "col-8 offset-2"
also needs a height, about 150px and additional buttons settings and maybe something else-->
<div class="col-12 m-1 p-0 justify-content-around nav">
<button type="button" class="btn btn-outline-warning"><a href="rideconf.html">Book Ride</a></button>
<button type="button" class="btn btn-outline-danger">Later</button>
<button type="button" class="btn btn-outline-warning">Options</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>
<!-- bootstrap form -->
<!-- full-name input-->
<!-- <div class="control-group">
<label class="control-label">Full Name</label>
<div class="controls">
<input id="full-name" name="full-name" type="text" placeholder="full name"
class="input-xlarge">
<p class="help-block"></p>
</div>
</div> -->
<!-- address-line1 input-->
<!-- city input-->
<!-- <div class="control-group">
<label class="control-label">City / Town</label>
<div class="controls">
<input id="city" name="city" type="text" placeholder="city" class="input-xlarge">
<p class="help-block"></p>
</div>
</div>
<!-- region input-->
<!-- <div class="control-group">
<label class="control-label">State / Province / Region</label>
<div class="controls">
<input id="region" name="region" type="text" placeholder="state / province / region"
class="input-xlarge">
<p class="help-block"></p>
</div>
</div>
<!-- postal-code input-->
<!-- <div class="control-group">
<label class="control-label">Zip / Postal Code</label>
<div class="controls">
<input id="postal-code" name="postal-code" type="text" placeholder="zip or postal code"
class="input-xlarge">
</div>
</div>
<div class="control-group">
<label class="control-label">Email</label>
<div class="controls">
<input id="email" name="emaile" type="text" placeholder="email"
class="input-xlarge">
</div>
</div> --> --> !-->