-
Notifications
You must be signed in to change notification settings - Fork 3
/
paypal.html
63 lines (58 loc) · 1.74 KB
/
paypal.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Paypal - Paiement Validé</title>
<link rel="icon" href="img/iconepp.ico"/>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
padding: 40px;
background-color: #f1f1f1;
}
.confirmation-box {
border: 2px solid #999494bf;
border-radius: 10px;
padding: 20px;
margin: 0 auto;
max-width: 400px;
background-color: #ffffff; /* Blanc */
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.paypal-logo {
width: 150px;
margin-bottom: 20px;
}
h2 {
font-size: 24px;
color: #0063B1;
margin-bottom: 20px;
}
p {
font-size: 18px;
margin-bottom: 10px;
}
a {
color: #0063B1;
text-decoration: none;
}
</style>
<script>
setTimeout(function() {
window.location.href = "#";
}, 5000);
</script>
</head>
<body>
<div class="confirmation-box">
<img src="img/paypallogo.png" alt="paypal" class="paypal-logo">
<h2>Paiement Validé</h2>
<p>Merci d'avoir effectué votre paiement avec PayPal.</p>
<p>Votre paiement a été validé et traité avec succès.</p>
<p>Transaction effectuée chez <strong>Douyin - TikTok</strong>.</p>
<p>Vous allez être automatiquement redirigé vers notre page d'accueil dans quelques instants.</p>
<p>Si la redirection ne fonctionne pas, veuillez cliquer <a href="#">ici</a> pour revenir à la page d'accueil.</p>
</div>
</body>
</html>