forked from tasminoni/CSE370-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
paymentsuc.html
68 lines (64 loc) · 1.39 KB
/
paymentsuc.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Payment Successful</title>
<style>
body {
font-family: 'Arial', sans-serif;
background: linear-gradient(to right, #a1c4fd, #c2e9fb);
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}
.payment-success-container {
background-color: #fff;
padding: 30px;
border-radius: 15px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
h2 {
color: #32c787;
margin: 0;
margin-bottom: 15px;
}
p {
color: #333;
margin: 5px 0;
}
.transaction-id {
font-weight: bold;
color: #555;
}
.button {
display: inline-block;
padding: 10px 20px;
margin-top: 20px;
border: none;
border-radius: 5px;
background-color: #32c787;
color: white;
font-size: 16px;
text-decoration: none;
cursor: pointer;
transition: background-color 0.3s;
}
.button:hover {
background-color: #2da676;
}
</style>
</head>
<body>
<div class="payment-success-container">
<h2>Payment Successful!</h2>
<p>Your payment has been processed successfully.</p>
<p>Transaction ID: <span class="transaction-id">TX123456789</span></p>
<a href="success2.php" class="button">Go Next</a>
</div>
</body>
</html>