-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofil.php
More file actions
45 lines (43 loc) · 1.57 KB
/
profil.php
File metadata and controls
45 lines (43 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style/profil/profil.css">
<link rel="stylesheet" href="style/navbar.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="profil/profil.js"></script>
<title>Profil</title>
</head>
<body>
<div class="navbar">
<?php include 'components/navbar.php' ?>
</div>
<div class="container">
<!-- Section Information personnelle -->
<div class="section personal-info">
<h2 class="section-title">Mon profil</h2>
<img src="<?php
$path = "img/uploads/user/".AnimalDB::getUserID($_SESSION['username']).".jpg";
$src = file_exists($path) ? $path : "img/animals/default.jpg";
echo $src;
?>"
alt="photo de profil">
<div>
<h4>Pseudo: </h4>
<p><?php echo $_SESSION['username'];?></p>
<h4>Mail</h4>
<p><?php echo animalDB::getMail($_SESSION['username']);?></p>
<button class='change--profil'>Modifier le profil</button>
<button class='disconnect'>Se déconnecter</button>
</div>
</div>
<!-- Première section vide -->
<div class="mes--etudes">
<h2 class="section-title">Mes etudes</h2>
<div class="myStudies"></div>
</div>
</div>
</body>
</html>