-
Notifications
You must be signed in to change notification settings - Fork 0
/
artikel.php
36 lines (33 loc) · 1.25 KB
/
artikel.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
<?php include 'header.php'; ?>
<div class="container-fluid">
<div class="card shadow mb-4">
<div class="card-header py-3">
<h6 class="m-0 font-weight-bold text-primary">Tabel Artikel</h6>
</div>
<div class="card-body">
<div class="table-responsive">
<table class="table table-bordered" id="dataTable" width="100%" cellspacing="0">
<thead>
<tr>
<th>Id Artikel</th>
<th>Judul Artikel</th>
<th>Cover Image</th>
<th>Edit</th>
<th>Hapus</th>
</tr>
</thead>
<tbody>
<tr>
<td>Tiger Nixon</td>
<td>System Architect</td>
<td><img src="" alt="cover"></td>
<td><a href="#" class="btn btn-primary">Edit</a></td>
<td><a href="#" class="btn btn-danger">Hapus</a></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<?php include 'footer.php'; ?>