clement callaert 2 years ago
parent
commit
b341199c69
  1. 15
      middlewares/auth-middleware.js
  2. 2
      views/401.ejs
  3. 2
      views/403.ejs
  4. 2
      views/404.ejs
  5. 2
      views/500.ejs
  6. 2
      views/connexion.ejs
  7. 2
      views/creer_compte.ejs
  8. 2
      views/futur.ejs
  9. 2
      views/hotLine.ejs
  10. 2
      views/index.ejs
  11. 2
      views/profile.ejs

15
middlewares/auth-middleware.js

@ -9,13 +9,18 @@ async function auth (req, res, next) {
if (!user || !isAuth) {
return next();
}
const userDoc = await db.getDb().collection('users').findOne({_id: user.id})
const isAdmin = userDoc.isAdmin;
res.locals.user = userDoc;
res.locals.isAuth = isAuth;
res.locals.isAdmin = isAdmin;
if (userDoc && userDoc.isAdmin) {
const isAdmin = userDoc.isAdmin;
res.locals.user = userDoc;
res.locals.isAuth = isAuth;
res.locals.isAdmin = isAdmin;
}
next();
}

2
views/401.ejs

@ -5,7 +5,7 @@
<%- include('includes/header.ejs') %>
<main>
<video id="background-video" autoplay loop muted>
<source src="https://www.vecteezy.com/video/11128600-space-galaxy-and-nebula" type="video/mp4">
<source src="https://files.vecteezy.com/system/protected/files/006/671/832/vecteezy_traveling-through-star-fields-in-space-to-a-distant-galaxy_6671832_942.mp4" type="video/mp4">
</video>
<div id="first_div">
<h1>

2
views/403.ejs

@ -5,7 +5,7 @@
<%- include('includes/header.ejs') %>
<main>
<video id="background-video" autoplay loop muted>
<source src="video/videoBackground.mp4" type="video/mp4">
<source src="https://files.vecteezy.com/system/protected/files/006/671/832/vecteezy_traveling-through-star-fields-in-space-to-a-distant-galaxy_6671832_942.mp4" type="video/mp4">
</video>
<div id="first_div">
<h1>

2
views/404.ejs

@ -5,7 +5,7 @@
<%- include('includes/header.ejs') %>
<main>
<video id="background-video" autoplay loop muted>
<source src="video/videoBackground.mp4" type="video/mp4">
<source src="https://files.vecteezy.com/system/protected/files/006/671/832/vecteezy_traveling-through-star-fields-in-space-to-a-distant-galaxy_6671832_942.mp4" type="video/mp4">
</video>
<div id="first_div">
<h1>

2
views/500.ejs

@ -5,7 +5,7 @@
<%- include('includes/header.ejs') %>
<main>
<video id="background-video" autoplay loop muted>
<source src="video/videoBackground.mp4" type="video/mp4">
<source src="https://files.vecteezy.com/system/protected/files/006/671/832/vecteezy_traveling-through-star-fields-in-space-to-a-distant-galaxy_6671832_942.mp4" type="video/mp4">
</video>
<div id="first_div">
<h1>

2
views/connexion.ejs

@ -5,7 +5,7 @@
<%- include('includes/header') %>
<main>
<video id="background-video" autoplay loop muted>
<source src="https://www.vecteezy.com/video/11128600-space-galaxy-and-nebula" type="video/mp4">
<source src="https://files.vecteezy.com/system/protected/files/006/671/832/vecteezy_traveling-through-star-fields-in-space-to-a-distant-galaxy_6671832_942.mp4" type="video/mp4">
</video>
<div id="first_div">
<h1>

2
views/creer_compte.ejs

@ -5,7 +5,7 @@
<%- include('includes/header') %>
<main id="signup">
<video id="background-video" autoplay loop muted>
<source src="video/videoBackground.mp4" type="video/mp4">
<source src="https://files.vecteezy.com/system/protected/files/006/671/832/vecteezy_traveling-through-star-fields-in-space-to-a-distant-galaxy_6671832_942.mp4" type="video/mp4">
</video>
<div id="first_div">
<h1>

2
views/futur.ejs

@ -5,7 +5,7 @@
<%- include('includes/header.ejs') %>
<main>
<video id="background-video" autoplay loop muted>
<source src="video/videoBackground.mp4" type="video/mp4">
<source src="https://files.vecteezy.com/system/protected/files/006/671/832/vecteezy_traveling-through-star-fields-in-space-to-a-distant-galaxy_6671832_942.mp4" type="video/mp4">
</video>
<div id="first_div">
<h1>

2
views/hotLine.ejs

@ -6,7 +6,7 @@
<%- include('includes/header') %>
<main>
<video id="background-video" autoplay loop muted>
<source src="video/videoBackground.mp4" type="video/mp4">
<source src="https://files.vecteezy.com/system/protected/files/006/671/832/vecteezy_traveling-through-star-fields-in-space-to-a-distant-galaxy_6671832_942.mp4" type="video/mp4">
</video>
<div id="hiddenDiv">
<h1>

2
views/index.ejs

@ -5,7 +5,7 @@
<%- include('includes/header.ejs') %>
<main>
<video id="background-video" autoplay loop muted>
<source src="video/videoMilkyWay.mp4" type="video/mp4">
<source src="https://files.vecteezy.com/system/protected/files/021/571/018/vecteezy_milky-way-galaxy-zoom-out-space-flight_21571018_29.mp4" type="video/mp4">
</video>
<div class="divLogoPerm">

2
views/profile.ejs

@ -5,7 +5,7 @@
<%- include('includes/header') %>
<main>
<video id="background-video" autoplay loop muted>
<source src="video/videoBackground.mp4" type="video/mp4">
<source src="https://files.vecteezy.com/system/protected/files/006/671/832/vecteezy_traveling-through-star-fields-in-space-to-a-distant-galaxy_6671832_942.mp4" type="video/mp4">
</video>
<div id="first_div">

Loading…
Cancel
Save