45 lines
No EOL
1.4 KiB
Text
45 lines
No EOL
1.4 KiB
Text
<%- include('includes/head', {Title : 'My profile'}) %>
|
|
<link rel="stylesheet" type="text/css" href="css/profile.css">
|
|
</head>
|
|
<body>
|
|
<%- include('includes/header') %>
|
|
<main>
|
|
<video id="background-video" autoplay loop muted>
|
|
<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>
|
|
This is your profile
|
|
</h1>
|
|
<ul>
|
|
<li>
|
|
<p>
|
|
Nom : <%= locals.user.nom %>
|
|
</p>
|
|
</li>
|
|
<li>
|
|
<p>
|
|
Prénom : <%= locals.user.prenom %>
|
|
</p>
|
|
</li>
|
|
<li>
|
|
<p>
|
|
Nom d'utilisateur : <%= locals.user.nom_dutilisateur %>
|
|
</p>
|
|
</li>
|
|
<li>
|
|
<p>
|
|
Adresse email : <%= locals.user.email %>
|
|
</p>
|
|
</li>
|
|
<form action="/supprimer-compte" method="post">
|
|
<button>
|
|
Supprimer son compte
|
|
</button>
|
|
</form>
|
|
</ul>
|
|
</div>
|
|
</main>
|
|
<%- include('includes/footer')%>
|
|
</body> |