unauthorised page
This commit is contained in:
16
static/css/unauthorised.css
Normal file
16
static/css/unauthorised.css
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
body {
|
||||||
|
background-color: #11111b;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
color: yellow;
|
||||||
|
}
|
||||||
|
|
||||||
|
p, a {
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
22
static/html/unauthorised.html
Normal file
22
static/html/unauthorised.html
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport"
|
||||||
|
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||||
|
<base href="/" target="_top">
|
||||||
|
<link rel="stylesheet" href="static/css/unauthorised.css">
|
||||||
|
<title>Non autorisé</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="app" id="app">
|
||||||
|
<h1>Tu n'es pas autorisé à accèder à cette page.</h1>
|
||||||
|
<h3>Merci de bien vouloir te connecter.</h3>
|
||||||
|
<a href="/login">Se connecter</a>
|
||||||
|
<p>Tu n'as pas de compte?</p>
|
||||||
|
<a href="/register">Créer un compte</a>
|
||||||
|
<h3>Si c'est une erreur, contacte un administrateur.</h3>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Reference in New Issue
Block a user