forked from SouICry/fetch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_checkout.html
More file actions
51 lines (42 loc) · 1.92 KB
/
_checkout.html
File metadata and controls
51 lines (42 loc) · 1.92 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
<div id="checkout" class="container text-center box">
<div class="row" style="margin-bottom: 15px">
<div class="col-xs-offset-2 col-xs-8">
<h2>Continue Checkout</h2>
<div class=row>
<h4>If driver cannot locate your specific item, buy... </h4>
<div class="row">
<div id="checkout_notes">
<form action="submit" style="text-align:left">
<div class="col-xs-4 col-xs-offset-4">
<input name="special_notes" type="radio" id="checkout_option1" value="cheapest"/>
<label for="checkout_option1">Cheapest</label>
<input name="special_notes" type="radio" id="checkout_option2" value="expensive"/>
<label for="checkout_option2">Most Expensive</label>
<input name="special_notes" type="radio" id="checkout_option3" value="none"/>
<label for="checkout_option3">None</label>
</div>
</form>
</div>
</div>
<div class="row">
<div class="alert alert-danger fade in" id="checkout_warning">
<strong>Danger!</strong> You must select an option!
</div>
</div>
</div>
</div>
</div>
<div class="row" style="text-align: center">
<div class="col-xs-12">
<a id="checkout-back" type="button" class="btn waves-effects"><< Back</a>
<a id="checkout_submitcheckout" type="button" class="btn waves-effects">Select >></a>
</div>
</div>
</div>
<div class="footerBars container">
<div class="footer2"></div>
<div class="footer3"></div>
</div>
<script src="js/_checkout.js"></script>
<script>
</script>