-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProfile.php
More file actions
37 lines (34 loc) · 791 Bytes
/
Profile.php
File metadata and controls
37 lines (34 loc) · 791 Bytes
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
<?php
if(isset($_SESSION['Kullanici'])){
?>
<div class="container">
<div class="row justify-content-center align-items-center">
<div class="col-lg-6">
<div class="row">
<div class=" card card-index col-md-8">
<div>
<p>AD: <b><?php echo($Ad) ?></b></p>
</div>
<div>
<p>SOYAD: <b><?php echo($Soyad) ?></b></p>
</div>
<div>
<p>EMAİL ADRESİ: <b><?php echo($EmailAdresi) ?></b></p>
</div>
<hr>
<div class="row">
<div class=" col-sm-3 mr-4">
<a href="index.php?RC=14" class="btn bg-gradient-danger btn-block text-white">Çıkış Yap</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php
}else{
header("Location:index.php?RC=0");
exit();
}
?>