-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcancel.php
102 lines (102 loc) · 2.73 KB
/
cancel.php
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
<?php
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
session_start();
?>
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Commande annulée</title>
<style>
body {
background-color: #183425;
font-family: Arial, sans-serif;
color: #333;
text-align: center;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
display: flex;
justify-content: center;
align-items: center;
min-height: 90vh;
flex-direction: column;
background-color: #183425;
padding: 10px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header-text {
margin-bottom: 20px;
}
.header-text h1 {
font-size: 72px;
margin: 0;
color: #BC644B;
}
h2 {
font-size: 24px;
margin: 0;
color: #f2d8be;
}
p {
margin: 20px 0;
color: #fff;
}
a.btn-home {
background-color: #BC644B;
color: #fff;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
display: inline-block;
margin-top: 20px;
}
a.btn-home:hover {
background-color: #a22300;
}
.left-box, .right-box {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.right-box img {
border-radius: 10px;
max-width: 100%;
height: auto;
margin-top: 30px;
}
@media (min-width: 768px) {
.container {
flex-direction: row;
justify-content: space-between;
}
.left-box, .right-box {
width: 50%;
}
}
</style>
</head>
<body>
<div class="container">
<div class="left-box">
<div class="header-text">
<h1>Commande annulée</h1>
</div>
<p>Nous sommes désolés, mais votre commande n'a pas pu être complétée et a donc été annulée.</p>
<a href="index.php" class="btn-home">Retour à l'accueil</a>
</div>
<div class="right-box">
<img src="IMAGES/lion-regard-triste-son-visage_720722-3647.png" alt="Lion triste">
</div>
</div>
</body>
</html>