add error template file
This commit is contained in:
43
50x.html
Normal file
43
50x.html
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="fr">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=500, initial-scale=1.0">
|
||||||
|
<title>Service unavailable</title>
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
height: 70vh;
|
||||||
|
background-color: rgba(248, 241, 219, 0.801);
|
||||||
|
}
|
||||||
|
.box {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
box-shadow: rgba(76, 76, 80, 0.2) 0px 7px 29px 0px;
|
||||||
|
width: 30vw;
|
||||||
|
padding: 2rem;
|
||||||
|
background-color: rgb(255, 255, 255);
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="box">
|
||||||
|
<h1>Le service n'est pas disponible.</h1>
|
||||||
|
<p>
|
||||||
|
Il est possible que le serveur soit éteint pour les raisons suivantes :
|
||||||
|
<ul>
|
||||||
|
<li>Maintenance hebdomadaire (mise à jour des services et backup).</li>
|
||||||
|
<li>Le service n'est plus maintenu.</li>
|
||||||
|
</ul>
|
||||||
|
</p>
|
||||||
|
<aside>
|
||||||
|
Contactez l'administrateur ou patientiez quelques instant.
|
||||||
|
</aside>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Reference in New Issue
Block a user