maintenance.html 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <!-- public/maintenance.html -->
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <title>Site en maintenance</title>
  6. <meta charset="UTF-8">
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  8. <style>
  9. body {
  10. font-family: Arial, sans-serif;
  11. text-align: center;
  12. background-color: #ecf0f5; /* background from lightTheme */
  13. color: #000000; /* on-background from lightTheme */
  14. margin: 0;
  15. padding: 0;
  16. display: flex;
  17. justify-content: center;
  18. align-items: center;
  19. min-height: 100vh;
  20. }
  21. .maintenance-container {
  22. background-color: #ffffff; /* surface from lightTheme */
  23. border-radius: 8px;
  24. box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  25. padding: 40px;
  26. max-width: 600px;
  27. width: 90%;
  28. }
  29. .logo {
  30. max-width: 250px;
  31. margin-bottom: 30px;
  32. }
  33. h1 {
  34. color: #324150; /* secondary from lightTheme */
  35. margin-bottom: 20px;
  36. font-size: 28px;
  37. }
  38. p {
  39. color: #777777; /* neutral-strong from lightTheme */
  40. font-size: 18px;
  41. line-height: 1.5;
  42. margin-bottom: 30px;
  43. }
  44. .maintenance-date {
  45. color: #324150; /* secondary from lightTheme */
  46. font-size: 16px;
  47. font-weight: bold;
  48. margin-bottom: 20px;
  49. padding: 10px;
  50. background-color: #f5f5f5;
  51. border-radius: 4px;
  52. display: inline-block;
  53. }
  54. .status-indicator {
  55. display: inline-block;
  56. background-color: #00ad8e; /* primary from lightTheme */
  57. color: #ffffff; /* on-primary from lightTheme */
  58. padding: 10px 20px;
  59. border-radius: 4px;
  60. font-weight: bold;
  61. }
  62. </style>
  63. </head>
  64. <body>
  65. <div class="maintenance-container">
  66. <img src="/images/logos/Logo_Opentalent_Griffe.png" alt="Opentalent Logo" class="logo">
  67. <h1>
  68. Site en maintenance
  69. </h1>
  70. <p>
  71. Notre site est actuellement en maintenance. Nous travaillons à améliorer votre
  72. expérience et serons de retour très bientôt. Veuillez revenir plus tard.
  73. </p>
  74. <div class="maintenance-date">
  75. Date de maintenance : mercredi 04 juin, de 12h00 à 13h00
  76. </div>
  77. <div class="status-indicator">
  78. Maintenance en cours
  79. </div>
  80. </div>
  81. </body>
  82. </html>