-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheckout.html
More file actions
80 lines (79 loc) · 3.68 KB
/
checkout.html
File metadata and controls
80 lines (79 loc) · 3.68 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
<!DOCTYPE html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Archivo+Black&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Oswald&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Nanum+Gothic&display=swap" rel="stylesheet">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<script type="text/javascript" src="CartJava.js"></script>
<Title>Checkout</Title>
</head>
<body class="bg-light container">
<div class="row">
<div class="col pt-3 pb-2">
<p class="brandname">Company Name</p>
</div>
</div>
<div>
<ul>
<li><a class="active" href="#log">Login</a></li>
<li><a href="#user">User Info</a></li>
<li><a href="#cart">Shipping</a></li>
</ul>
</div>
<div class="row pt-5">
<div class="col-md-4 order-md-2 mb-4">
<h4 class="d-flex justify-content-between align-items center pt-1 pb-1 pl-2">
Your Cart
</h4>
<ul class="list-group mb-3">
<li class="list-group-item d-flex justify-content-between lh-condensed">
<div>
<h6 class="my-0 text-muted">Shopping Amount</h6>
</div>
<span class="text-muted"> $</span>
</li>
<li class="list-group-item d-flex justify-content-between lh-condensed">
<div>
<h6 class="my-0 text-muted">Tax</h6>
</div>
<span class="text-muted"> $</span>
</li>
<li class="list-group-item d-flex justify-content-between lh-condensed">
<div>
<h6 class="my-0 text-muted">Shipping Charges</h6>
</div>
<span class="text-muted"> $</span>
</li>
<li class="list-group-item d-flex justify-content-between lh-condensed">
<div>
<h6 class="my-0">Total</h6>
</div>
<span class="text-muted"> $</span>
</li>
</ul>
</div>
<div class="col-md-8 order-md-1 pb-4">
<h4 class="d-flex justify-content-between align-items center pt-1 pb-1 pl-2">Payment</h4>
<form class="font border bg-white" id="form1" action="#" onsubmit="return checkForm(this)">
Choose your payment method<br>
<select class="font form-control">
<option value="Visa">Visa</option>
<option value="Mastercard">Mastercard</option>
<option value="American Express">American Express</option>
</select><br>
Card Number <br>
<input class="font form-control"type="text" name="cardnumber" placeholder="XXXX-XXXX-XXXX-XXXX"><br>
Expiration Date <br>
<input class="font form-control" type="text" name="expdate" required pattern="\d{1,2}/\d{1,2}/\d{4}" placeholder="MM/YYYY"><br>
<input class="font" type="checkbox"> I agree and authorize the amount to be charged to my credit card.
<br><br><a href="confirmationpage.html"><button class="font btn btn-warning btn-block" type="Button" value="Submit" onclick="SubmitForm();">Submit</button></a>
</form>
</div>
</div>
<footer class="my-5 text-muted text-center text-smaller">
<p class="mb-1"> Copyright 2019 Company Name</p>
</footer>
</body>