-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprofil.php
More file actions
57 lines (55 loc) · 2.05 KB
/
Copy pathprofil.php
File metadata and controls
57 lines (55 loc) · 2.05 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
46
47
48
49
50
51
52
53
54
55
56
57
<?php
require_once __DIR__.'/function/library.php';
require_once __DIR__.'/function/profil.php';
$username = getUsername();
$profil = getProfil($username);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<?php include_once "title.php";?>
</head>
<body>
<div id="container">
<?php include_once "header.php";?>
<article id="content" class="layer">
<h1>Profil</h1>
<section>
<div class="row">
<div class="col-md-4 text-left">Nama</div>
<div class="col-md-8 text-left">: <?php echo $profil['nama']; ?></div>
</div>
<div class="row">
<div class="col-md-4 text-left">Status</div>
<div class="col-md-8 text-left">: <?php echo ($profil['id_role'] == 1)?'Siswa':'Guru'; ?></div>
</div>
<div class="row">
<div class="col-md-4 text-left">Tempat Lahir</div>
<div class="col-md-8 text-left">: <?php echo $profil['tempat_lahir']; ?></div>
</div>
<div class="row">
<div class="col-md-4 text-left">Tanggal Lahir</div>
<div class="col-md-8 text-left">: <?php echo $profil['tanggal_lahir']; ?></div>
</div>
<div class="row">
<div class="col-md-4 text-left">Nama Sekolah</div>
<div class="col-md-8 text-left">: <?php echo $profil['nama_sekolah']; ?></div>
</div>
<div class="row">
<div class="col-md-4 text-left">Jenis Kelamin</div>
<div class="col-md-8 text-left">: <?php echo ($profil['jenis_kelamin'] == 'L')?'Laki-laki':'Perempuan'; ?></div>
</div>
<div class="row">
<div class="col-md-4 text-left">Nomor Handphone</div>
<div class="col-md-8 text-left">: <?php echo $profil['no_handphone']; ?></div>
</div>
<br/>
<a href="edit_profil.php" class="btn btn-default">Edit</a>
</section>
</article>
<footer>
<div>© Copyright 2013</div>
</footer>
</div>
</body>
</html>