maintenance.html 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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
  67. src="/images/logos/Logo_Opentalent_Griffe.png"
  68. alt="Opentalent Logo"
  69. class="logo"
  70. />
  71. <h1>Site en maintenance</h1>
  72. <p>
  73. Notre site est actuellement en maintenance. Nous travaillons à améliorer
  74. votre expérience et serons de retour très bientôt. Veuillez revenir plus
  75. tard.
  76. </p>
  77. <div class="maintenance-date">
  78. Date de maintenance : mercredi 04 juin, de 12h00 à 13h00
  79. </div>
  80. <div class="status-indicator">Maintenance en cours</div>
  81. </div>
  82. </body>
  83. </html>