-
Notifications
You must be signed in to change notification settings - Fork 0
/
profil.php
51 lines (44 loc) · 1011 Bytes
/
profil.php
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
46
47
48
49
50
51
<?php
session_start();
?><!DOCTYPE html>
<html>
<head>
<?php
include("raccourcis/link_header.php");
?>
<title>Profil</title>
</head>
<body>
<?php
include("raccourcis/header.php");
?>
<div class="affichage">
<div class="content">
<div class="formulaire">
<form method="POST" action="" class="login active">
<br/>
<h1>Mon profil</h1>
<div>
<label>Prenom : <?php echo $_SESSION['prenom']; ?> </label>
</div>
<div>
<label>Nom : <?php echo $_SESSION['nom']; ?> </label>
</div>
<div>
<label>Mail : <?php echo $_SESSION['email']; ?> </label>
</div>
<div>
<label>Promotion : <?php echo $_SESSION['promotion']; ?> </label>
</div>
<div class="bottom">
<a href="editprofil.php" rel="register" class="linkform">
<input type="button" value="Editer mon profil" /></a>
</div>
</div>
</div>
<?php
include("raccourcis/footer.php");
?>
</div>
</body>
</html>