-
Notifications
You must be signed in to change notification settings - Fork 0
/
form_signup.php
52 lines (43 loc) · 1.48 KB
/
form_signup.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
<div class="row">
<form class="form-horizontal" method="post" action="proses_signup.php" enctype="multipart/form-data">
<fieldset>
<div class="box">
<hr>
<h2 class="page-header"><center>REGISTER</center> </h2>
<hr>
<div class="col-lg-10" style="margin-left:2%;">
<div class="row">
<div class="col-md-10">
<br><br>
<table class="table table-hover">
<tr>
<td width="200px">NIK</td>
<td width="10px">:</td>
<td><input type="text" name="nik" class="form-control input-md"></td>
</tr>
<tr>
<td width="200px">User Name</td>
<td width="10px">:</td>
<td><input type="text" name="username" class="form-control input-md"> </td>
</tr>
<tr>
<td width="200px">Password</td>
<td width="10px">:</td>
<td><input type="password" name="password" class="form-control input-md"></td>
</tr>
<tr>
<td width="200px">Nama</td>
<td width="10px">:</td>
<td><input type="text" name="nama_klien" class="form-control input-md" value=""></td>
</tr>
<tr>
<td width="200px">Alamat</td>
<td width="10px">:</td>
<td><input type="text" name="alamat" class="form-control input-md" value=""></td>
<td><input type="hidden" name="hak_akses" class="form-control input-md" value="user"></td>
</tr>
</table>
</form>
<center><button type="submit" id="" name="simpan" class="btn btn-primary">Simpan</button></center>
</div>
</div>