-
Notifications
You must be signed in to change notification settings - Fork 0
/
customer_password.php
67 lines (55 loc) · 1.46 KB
/
customer_password.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
58
59
60
61
62
63
64
65
66
67
<?php include 'header.php'; ?>
<!-- Breadcrumb Section Begin -->
<section class="breadcrumb-option">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="breadcrumb__text">
<h4>Dashboard Customer</h4>
<div class="breadcrumb__links">
<a href="index.php">Home</a>
<a href="#">Customer</a>
<span>Dashboard</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Breadcrumb Section End -->
<!-- Checkout Section Begin -->
<section class="checkout spad">
<div class="container">
<div class="row">
<div id="aside" class="col-md-3">
<?php
include 'customer_sidebar.php';
?>
</div>
<div id="main" class="col-md-9">
<h4><b>GANTI PASSWORD</b></h4>
<br>
<div>
<?php
if(isset($_GET['alert'])){
if($_GET['alert'] == "sukses"){
echo "<div class='alert alert-success'>Password anda berhasil diganti!</div>";
}
}
?>
<form action="customer_password_act.php" method="post">
<div class="checkout__input">
<label for="">Masukkan Password Baru</label>
<input type="password" class="input" required="required" name="password" placeholder="Masukkan password .." min="5">
</div>
<div class="form-group">
<input type="submit" class="site-btn" value="Ganti Password">
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Checkout Section End -->
<?php include 'footer.php'; ?>