-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdaftar.php
85 lines (74 loc) · 2.8 KB
/
daftar.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?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>Daftar Customer</h4>
<div class="breadcrumb__links">
<a href="index.php">Home</a>
<a href="#">Customer</a>
<span>Daftar</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Breadcrumb Section End -->
<!-- Checkout Section Begin -->
<section class="checkout spad">
<div class="container">
<div class="checkout__form">
<form action="daftar_act.php" method="post">
<div class="row justify-content-center">
<div class="col-lg-6 col-md-6">
<?php
if(isset($_GET['alert'])){
if($_GET['alert'] == "duplikat"){
echo "<div class='alert alert-danger text-center'>Maaf email ini sudah digunakan, silahkan gunakan email yang lain.</div>";
}
}
?>
<h6 class="coupon__code"><span class="icon_tag_alt"></span> Sudah punya akun? <a href="masuk.php" class="text-success">Klik Di Sini</a> untuk login.</h6>
<h6 class="checkout__title">Daftar</h6>
<div class="checkout__input">
<p>No KTP<span>*</span></p>
<input type="text" class="input" maxlength="16" required="required" name="no_ktp" placeholder="Masukkan No KTP ..">
</div>
<div class="checkout__input">
<p>Nama Lengkap<span>*</span></p>
<input type="text" class="input" required="required" name="customer_nama" placeholder="Masukkan nama lengkap ..">
</div>
<div class="row">
<div class="col-lg-6">
<div class="checkout__input">
<p>Email<span>*</span></p>
<input type="email" class="input" required="required" name="customer_email" placeholder="Masukkan email ..">
</div>
</div>
<div class="col-lg-6">
<div class="checkout__input">
<p>No. HP / Whatsapp<span>*</span></p>
<input type="number" class="input" required="required" name="customer_hp" placeholder="Masukkan nomor HP/Whatsapp ..">
</div>
</div>
</div>
<div class="checkout__input">
<p>Alamat<span>*</span></p>
<input type="text" class="input" required="required" name="customer_alamat" placeholder="Masukkan alamat lengkap ..">
</div>
<div class="checkout__input">
<p>Password<span>*</span> <small class="text-muted">Password ini digunakan untuk login ke akun anda.</small></p>
<input type="password" class="input" required="required" name="customer_password" placeholder="Masukkan password ..">
</div>
<button type="submit" class="site-btn">DAFTAR SEKARANG</button>
</div>
</div>
</form>
</div>
</div>
</section>
<!-- Checkout Section End -->
<?php include 'footer.php'; ?>