-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayment_confirmation.html
41 lines (31 loc) · 1.03 KB
/
payment_confirmation.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet"
href="https://cdn.staticfile.org/twitter-bootstrap/4.1.0/css/bootstrap.min.css">
<script src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>
<script
src="https://cdn.staticfile.org/popper.js/1.12.5/umd/popper.min.js"></script>
<script
src="https://cdn.staticfile.org/twitter-bootstrap/4.1.0/js/bootstrap.min.js"></script>
<title>Confirmation</title>
</head>
<body>
<div class="jumbotron "
style="background: linear-gradient(#AD0101, #840202);">
<div class="container">
<img src="images/logo.png" style="height: 80px" /><br /> <span
style="color: white; font-size: 35px">Payment Confirmed</span>
</div>
</div>
<div style="text-align:center;width:500px;margin-left:500px">
<h2>Thank you for your purchases!</h2>
<br/><br/>
<form action="./shop.html">
<input type="submit" value="Continue Shopping" class="btn btn-default"/>
</form>
</div>
</body>
</html>