commit
This commit is contained in:
parent
cc0a5ec15c
commit
cd1381db39
9 changed files with 24 additions and 14 deletions
|
@ -1,10 +1,4 @@
|
|||
body {
|
||||
background-image: url("/img/logo_dos.png");
|
||||
width: 100%;
|
||||
flex-direction: column;
|
||||
background-size: 100%; /* Ajuste la taille de l'image pour remplir complètement l'arrière-plan */
|
||||
background-repeat: no-repeat; /* Empêche la répétition de l'image */
|
||||
background-attachment: fixed; /* Fixe l'image en position de fond */
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
|
|
|
@ -35,23 +35,23 @@ router.get('/admin', async function (req, res) {
|
|||
|
||||
|
||||
router.get('/contact', function (req, res) {
|
||||
res.render('contact')
|
||||
res.render('futur')
|
||||
})
|
||||
|
||||
router.get('/sports', function (req,res) {
|
||||
res.render('sports')
|
||||
res.render('futur')
|
||||
})
|
||||
|
||||
router.get('/services', function (req,res) {
|
||||
res.render('services')
|
||||
res.render('futur')
|
||||
})
|
||||
|
||||
router.get('/team', function (req,res) {
|
||||
res.render('team')
|
||||
res.render('futur')
|
||||
})
|
||||
|
||||
router.get('/a-propos', function (req,res) {
|
||||
res.render('a_propos')
|
||||
res.render('futur')
|
||||
})
|
||||
|
||||
|
||||
|
|
|
@ -4,9 +4,12 @@
|
|||
<body>
|
||||
<%- include('includes/header.ejs') %>
|
||||
<main>
|
||||
<video id="background-video" autoplay loop muted>
|
||||
<source src="video/videoBackground.mp4" type="video/mp4">
|
||||
</video>
|
||||
<div id="first_div">
|
||||
<h1>
|
||||
Erreur 401 - Non autorisé : Accès refusé. Vous n'avez pas les permissions nécessaires pour accéder à cette ressource.
|
||||
Erreur 401 - Non autorisé : Accès refusé. Vous n'avez pas les permissions nécessaires pour accéder à cette ressource. Veuillez créer un compte
|
||||
</h1>
|
||||
</div>
|
||||
</main>
|
||||
|
|
|
@ -4,6 +4,9 @@
|
|||
<body>
|
||||
<%- include('includes/header.ejs') %>
|
||||
<main>
|
||||
<video id="background-video" autoplay loop muted>
|
||||
<source src="video/videoBackground.mp4" type="video/mp4">
|
||||
</video>
|
||||
<div id="first_div">
|
||||
<h1>
|
||||
Erreur 403 - Accès interdit : Vous n'êtes pas autorisé à accéder à cette ressource.
|
||||
|
|
|
@ -4,6 +4,9 @@
|
|||
<body>
|
||||
<%- include('includes/header.ejs') %>
|
||||
<main>
|
||||
<video id="background-video" autoplay loop muted>
|
||||
<source src="video/videoBackground.mp4" type="video/mp4">
|
||||
</video>
|
||||
<div id="first_div">
|
||||
<h1>
|
||||
Erreur 404 - Page non trouvée : La page que vous cherchez est introuvable.
|
||||
|
|
|
@ -4,6 +4,9 @@
|
|||
<body>
|
||||
<%- include('includes/header.ejs') %>
|
||||
<main>
|
||||
<video id="background-video" autoplay loop muted>
|
||||
<source src="video/videoBackground.mp4" type="video/mp4">
|
||||
</video>
|
||||
<div id="first_div">
|
||||
<h1>
|
||||
Erreur 500 - Erreur interne du serveur : Le serveur a rencontré une erreur interne ou une condition inattendue et n'a pas pu répondre à votre requête.
|
||||
|
|
|
@ -46,7 +46,7 @@
|
|||
<label for="confirm-Password">confirmation du mot de passe</label>
|
||||
<input type="password" id="confirm-password" name="confirm-password" value="<%= inputData.confirmPassword %>" required>
|
||||
</div>
|
||||
<button class="btn">
|
||||
<button class="custom-cursor">
|
||||
Créer l'utilisateur
|
||||
</button>
|
||||
</form>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
<li>
|
||||
<a href="/connexion" class="custom-cursor">
|
||||
<button class="button-85" role="button">
|
||||
Team
|
||||
Se connecter
|
||||
</button>
|
||||
</a>
|
||||
</li>
|
||||
|
|
|
@ -4,7 +4,11 @@
|
|||
<body>
|
||||
<%- include('includes/header') %>
|
||||
<main>
|
||||
<video id="background-video" autoplay loop muted>
|
||||
<source src="video/videoBackground.mp4" type="video/mp4">
|
||||
</video>
|
||||
<div id="first_div">
|
||||
|
||||
<h1>
|
||||
This is your profile
|
||||
</h1>
|
||||
|
|
Loading…
Reference in a new issue