-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkomentar_masuk.php
99 lines (91 loc) · 3.04 KB
/
komentar_masuk.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<title>Komentar masuk</title>
<?php
include("head.php");
?>
</head>
<body>
<!--Untuk Navbar-->
<header>
<?php
include 'navbar.php';
?>
</header>
<div class="content">
<center>
<div class="container">
<div class="row" style="text-align: center;">
<h1>Komentar masuk</h1>
<br>
<a href="buat_komentar.php" class="btn btn-default">Buat komentar</a>
</div>
<table class="display dataTable">
<div class="table responsive">
<table class="display table">
<thead>
<tr>
<th>No</th>
<th>Pengirim</th>
<th>Judul</th>
<th>Lihat</th>
</tr>
</thead>
<tbody>
<!--
<tbody style="display: block; max-height: 90px; overflow-y: scroll;">
-->
<tr>
<td>1</td>
<td>Siapa</td>
<td>Laporan terkini</td>
<td><a href="lihat_komentar.php" class="btn btn-default">Lihat</a></td>
</tr>
<tr>
<td>2</td>
<td>Siapa</td>
<td>Laporan bisnis</td>
<td><a href="" class="btn btn-default">Lihat</a></td>
</tr>
<tr>
<td>3</td>
<td>Siapa</td>
<td>Laporan</td>
<td><a href="" class="btn btn-default">Lihat</a></td>
</tr>
<tr>
<td>4</td>
<td>Siapa</td>
<td>Hehehe</td>
<td><a href="" class="btn btn-default">Lihat</a></td>
</tr>
<tr>
<td>5</td>
<td>Siapa</td>
<td>Laporan saja</td>
<td><a href="" class="btn btn-default">Lihat</a></td>
</tr>
<tr>
<td>6</td>
<td>Siapa</td>
<td>Laporan terdahulu</td>
<td><a href="" class="btn btn-default">Lihat</a></td>
</tr>
</tbody>
</table>
</div>
</table>
</div>
<br>
</div>
<?php
include 'footer.php';
?>
</body>