-
Notifications
You must be signed in to change notification settings - Fork 0
/
success_page.html
107 lines (101 loc) · 5.6 KB
/
success_page.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-social/5.1.1/bootstrap-social.min.css" integrity="sha512-f8mUMCRNrJxPBDzPJx3n+Y5TC5xp6SmStstEfgsDXZJTcxBakoB5hvPLhAfJKa9rCvH+n3xpJ2vQByxLk4WP2g==" crossorigin="anonymous" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Cookie&family=Courgette&family=Redressed&family=Sofia&display=swap" rel="stylesheet">
<link rel = "stylesheet" href = "css/success_page.css">
<title>Donation Successful</title>
</head>
<body>
<div class="modal fade" id="exampleModalCenter" tabindex="-1" role="dialog" id="Receipt"
aria-labelledby="myLargeModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title ml-4 pl-4" id="exampleModalLongTitle">Transaction Confirmation Receipt</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-12 col-md-4 offset-sm-1">
<img class="img-fluid" src="images/payment.svg" width="120%">
</div>
<div class="col-12 col-md-7">
<div class="row">
<div class="col-10 offset-2 p-1">
<h2>Thankyou For the donation! </h2>
</div>
<div class="col-12 text-center p-1">
<h5 id="o-number"></h5>
</div>
<div class="col-12 text-center">
<h6><em>You will receive an email confirmation shortly!</em></h6>
</div>
</div>
</div>
</div>
<br>
<br>
<div class="row">
<div class="col-auto offset-2">
<h3>Transaction Summary:</h3>
</div>
</div>
<div class="container ml-md-5">
<div class="row">
<div class="col-5 col-md-3 offset-md-1 text-left">
<h6>Name:</h6>
<h6>Card Number:</h6>
<h6>Payment Done:</h6>
<h6>Transaction Date:</h6>
<h6>Mailed To:</h6>
</div>
<div class="col-6 offset-1 col-md-7 text-left">
<h6 id="name_of_card"></h6>
<h6 id="cardnum_of_user"> </h6>
<h6>Successful !</h6>
<h6 id="date_with_time"></h6>
<h6 id="email"></h6>
</div>
</div>
</div>
</div>
<div class="modal-footer bg-warning">
<button type="button" class="btn btn-primary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-success">Download</button>
</div>
</div>
</div>
</div>
<div class = "container">
<div class = "row">
<div class = "col-auto offset-1 offset-md-2">
<img class = "img-fluid" src = "https://i.pinimg.com/originals/b9/88/b7/b988b7c3e84e1f83ef9447157831b460.gif" alt = "Flying Rocket">
</div>
</div>
<div class = "row">
<div class = "col-auto offset-10 offset-md-5">
<a id = "back_to_home" href = "index.html" role = "button" class = "btn btn-success">Back to Home</a>
</div>
</div>
</div>
<script src = "purchase.js"></script>
<script src = "success.js"></script>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script>
$(document).ready(function () {
$('#exampleModalCenter').modal('toggle');
display_payment_details();
});
</script>
</body>
</html>