parent
c3193fb015
commit
a8e8ba6f16
After Width: | Height: | Size: 1.2 KiB |
@ -0,0 +1,57 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" type="text/css" href="../styles/styleProfil.css" media="screen">
|
||||
<title>Wiki Fantasy : Profil</title>
|
||||
<link id="favicon" rel="icon" href="../images/iconeSombre.ico"> <!-- Par défaut sombre -->
|
||||
<link href="https://fonts.googleapis.com/css2?family=Lemon&display=swap" rel="stylesheet">
|
||||
<script defer src="../script/theme-toggle.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="header">
|
||||
<div class="nav">
|
||||
<img src="../images/coeur.svg" alt="coeur" width="67px" height="67px" onmousedown="return false">
|
||||
<img id="theme-icon" src="../images/light.svg" alt="toggle theme" width="72px" height="37px" onmousedown="return false" onclick="toggleTheme()">
|
||||
<img src="../images/quizz.svg" alt="quizz" width="51px" height="82px" onmousedown="return false">
|
||||
</div>
|
||||
<div class="logo">
|
||||
<img src="../images/WIKIFANTASY.png" alt="Logo" width="227px" height="106px" onmousedown="return false" >
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="login">
|
||||
<h1>▶ Profil ◀</h1>
|
||||
|
||||
|
||||
<?php
|
||||
include ('../script/user.php');
|
||||
|
||||
echo "<img src={$u->img} class='imageProfil' onmousedown='return false'/>";
|
||||
|
||||
echo "<p class='nameProfil'> <strong>{$u->username}</strong></p>";
|
||||
echo "<p class='nameProfil'> <strong>{$u->email}</strong></p>";
|
||||
$passwdhiden = hidenPassWd($u);
|
||||
echo "<p class='nameProfil'> <strong>{$passwdhiden}</strong></p>";
|
||||
?>
|
||||
|
||||
<div class="languageDiv">
|
||||
<p class="languageTitle">Language :</p>
|
||||
</div>
|
||||
<img class="languageImage" src="../images/drapeauFrance.png" onmousedown="return false"/>
|
||||
|
||||
<div class="createQuote">
|
||||
<a href="rien" class="createQuote">Ajouter une citation</a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="buttonSudmiteDiv">
|
||||
<button class="buttonSudmite">Se déconnecter</button>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in new issue