-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththanks.html
40 lines (33 loc) · 1.44 KB
/
thanks.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Payment</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link rel="stylesheet" href="payment.css">
</head>
<body>
<main class="page payment-page">
<section class="payment-form dark">
<div class="container" style="background-color: #053d4e">
<div class="block-heading">
</div>
<div class="products">
<h3>Thanks for your purchase!</h3>
<h3>Google Pay Test Successfully completed! =) </h3>
<div id="transaction"></div>
</div>
<div class="card-details" style="background-color: #053d4e">
</div>
</div>
</section>
</main>
</body>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script>
document.getElementById('transaction').innerHTML = 'Transaction ID: ' + location.search.split('id=')[1]
</script>
</html>