-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfirmation.html
48 lines (46 loc) · 1.27 KB
/
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
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Exchange Confirmation</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f4f7;
margin: 0;
padding: 20px;
}
h1 {
text-align: center;
color: #333;
}
.confirmation {
text-align: center;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
background-color: #fff;
width: 60%;
margin: 0 auto;
}
.confirmation p {
font-size: 18px;
color: #555;
}
.confirmation strong {
color: #333;
}
</style>
</head>
<body>
<h1>Exchange Request Submitted</h1>
<div class="confirmation">
<p><strong>Exchange Type:</strong> {{ exchange_type }}</p>
<p><strong>Payeer Account:</strong> {{ payeer_account }}</p>
<p><strong>Amount:</strong> {{ amount }}</p>
<p><strong>EVC Number:</strong> {{ evc_number }}</p>
<p>Thank you for your submission. Please proceed with the exchange manually.</p>
</div>
</body>
</html>