| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <!-- public/maintenance.html -->
- <!doctype html>
- <html>
- <head>
- <title>Site en maintenance</title>
- <meta charset="UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <style>
- body {
- font-family: Arial, sans-serif;
- text-align: center;
- 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 {
- color: #324150; /* secondary from lightTheme */
- margin-bottom: 20px;
- font-size: 28px;
- }
- p {
- 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>
- </head>
- <body>
- <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>
- </html>
|