forked from gedelumbung/SlimCRUDClient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·46 lines (32 loc) · 941 Bytes
/
index.html
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
<!DOCTYPE HTML>
<html>
<head>
<title>CRUD RESTFul API</title>
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<form>
<input id="id" name="id" type="hidden" />
<label>Nama Customer:</label>
<input type="text" id="nama_customer" name="nama_customer" required>
<label>Alamat:</label>
<input type="text" id="alamat" name="alamat"/>
<label>Telepon:</label>
<input type="text" id="telepon" name="telepon"/>
<label>Tempat Lahir:</label>
<input type="text" id="tempat_lahir" name="tempat_lahir"/>
<label>Tanggal Lahir:</label>
<input type="text" id="tgl_lahir" name="tgl_lahir"/>
<button id="SaveBtn">Simpan</button>
<button id="DeleteBtn">Hapus</button>
</form>
<div class="content">
<button id="AddBtn">Tambah Data</button>
<ul id="ListData">
<li>Loading Data...</li>
</ul>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>