-
Notifications
You must be signed in to change notification settings - Fork 14
/
profil.php
57 lines (52 loc) · 1.7 KB
/
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
52
53
54
55
56
57
<?php
include_once('includes/header.inc.php');
include_once('includes/user.inc.php');
$eks = new User($db);
$eks->id = $_SESSION['id_pengguna'];
$eks->readOne();
if($_POST){
$eks->nl = $_POST['nl'];
$eks->un = $_POST['un'];
$eks->pw = md5($_POST['pw']);
if($eks->update()){ ?>
<script type="text/javascript">
window.onload=function(){
showStickySuccessToast();
};
</script> <?php
} else { ?>
<script type="text/javascript">
window.onload=function(){
showStickyErrorToast();
};
</script> <?php
}
}
?>
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12">
<ol class="breadcrumb">
<li><a href="index.php"><span class="fa fa-home"></span> Beranda</a></li>
<li class="active"><span class="fa fa-user"></span> Profil</li>
</ol>
<p style="margin-bottom:10px;">
<strong style="font-size:18pt;"><span class="fa fa-pencil"></span> Ubah Profil</strong>
</p>
<form method="post">
<div class="form-group">
<label for="nl">Nama Lengkap</label>
<input type="text" class="form-control" id="nl" name="nl" value="<?php echo $eks->nl; ?>" required>
</div>
<div class="form-group">
<label for="un">Username</label>
<input type="text" class="form-control" id="un" name="un" value="<?php echo $eks->un; ?>" required>
</div>
<div class="form-group">
<label for="pw">Password</label>
<input type="text" class="form-control" id="pw" name="pw" value="<?php echo $eks->pw; ?>" required>
</div>
<button type="submit" class="btn btn-primary"><span class="fa fa-edit"></span> Ubah</button>
</form>
</div>
</div>
<?php include_once('includes/footer.inc.php'); ?>