|
@@ -3,22 +3,80 @@
|
|
|
<html>
|
|
<html>
|
|
|
<head>
|
|
<head>
|
|
|
<title>Site en maintenance</title>
|
|
<title>Site en maintenance</title>
|
|
|
|
|
+ <meta charset="UTF-8">
|
|
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
<style>
|
|
<style>
|
|
|
body {
|
|
body {
|
|
|
font-family: Arial, sans-serif;
|
|
font-family: Arial, sans-serif;
|
|
|
text-align: center;
|
|
text-align: center;
|
|
|
- padding: 50px;
|
|
|
|
|
|
|
+ background-color: #ecf0f5; /* background from lightTheme */
|
|
|
|
|
+ color: #000000; /* on-background from lightTheme */
|
|
|
|
|
+ margin: 0;
|
|
|
|
|
+ padding: 0;
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ justify-content: center;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+ min-height: 100vh;
|
|
|
|
|
+ }
|
|
|
|
|
+ .maintenance-container {
|
|
|
|
|
+ background-color: #ffffff; /* surface from lightTheme */
|
|
|
|
|
+ border-radius: 8px;
|
|
|
|
|
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
|
|
|
|
+ padding: 40px;
|
|
|
|
|
+ max-width: 600px;
|
|
|
|
|
+ width: 90%;
|
|
|
|
|
+ }
|
|
|
|
|
+ .logo {
|
|
|
|
|
+ max-width: 250px;
|
|
|
|
|
+ margin-bottom: 30px;
|
|
|
}
|
|
}
|
|
|
h1 {
|
|
h1 {
|
|
|
- color: #333;
|
|
|
|
|
|
|
+ color: #324150; /* secondary from lightTheme */
|
|
|
|
|
+ margin-bottom: 20px;
|
|
|
|
|
+ font-size: 28px;
|
|
|
}
|
|
}
|
|
|
p {
|
|
p {
|
|
|
- color: #666;
|
|
|
|
|
|
|
+ color: #777777; /* neutral-strong from lightTheme */
|
|
|
|
|
+ font-size: 18px;
|
|
|
|
|
+ line-height: 1.5;
|
|
|
|
|
+ margin-bottom: 30px;
|
|
|
|
|
+ }
|
|
|
|
|
+ .maintenance-date {
|
|
|
|
|
+ color: #324150; /* secondary from lightTheme */
|
|
|
|
|
+ font-size: 16px;
|
|
|
|
|
+ font-weight: bold;
|
|
|
|
|
+ margin-bottom: 20px;
|
|
|
|
|
+ padding: 10px;
|
|
|
|
|
+ background-color: #f5f5f5;
|
|
|
|
|
+ border-radius: 4px;
|
|
|
|
|
+ display: inline-block;
|
|
|
|
|
+ }
|
|
|
|
|
+ .status-indicator {
|
|
|
|
|
+ display: inline-block;
|
|
|
|
|
+ background-color: #00ad8e; /* primary from lightTheme */
|
|
|
|
|
+ color: #ffffff; /* on-primary from lightTheme */
|
|
|
|
|
+ padding: 10px 20px;
|
|
|
|
|
+ border-radius: 4px;
|
|
|
|
|
+ font-weight: bold;
|
|
|
}
|
|
}
|
|
|
</style>
|
|
</style>
|
|
|
</head>
|
|
</head>
|
|
|
<body>
|
|
<body>
|
|
|
- <h1>Site en maintenance</h1>
|
|
|
|
|
- <p>Notre site est actuellement en maintenance. Veuillez revenir plus tard.</p>
|
|
|
|
|
|
|
+ <div class="maintenance-container">
|
|
|
|
|
+ <img src="/images/logos/Logo_Opentalent_Griffe.png" alt="Opentalent Logo" class="logo">
|
|
|
|
|
+ <h1>
|
|
|
|
|
+ Site en maintenance
|
|
|
|
|
+ </h1>
|
|
|
|
|
+ <p>
|
|
|
|
|
+ Notre site est actuellement en maintenance. Nous travaillons à améliorer votre
|
|
|
|
|
+ expérience et serons de retour très bientôt. Veuillez revenir plus tard.
|
|
|
|
|
+ </p>
|
|
|
|
|
+ <div class="maintenance-date">
|
|
|
|
|
+ Date de maintenance : mercredi 04 juin, de 12h00 à 13h00
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="status-indicator">
|
|
|
|
|
+ Maintenance en cours
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
</body>
|
|
</body>
|
|
|
</html>
|
|
</html>
|