-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanage.php
54 lines (53 loc) · 1.25 KB
/
manage.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
<?php include ('includes/checker.php');$dsb=false;$atr=false;$mng=true;$stg=false;
$titl="Manage User";
include ('includes/dheader.php');?>
<body class='dbbod'>
<div class='widg' id='managu'>
<div class='widh'>
<div class='lefte'>
<h4>Latest Users</h4>
</div>
<div class='righte'>
<input type='text' id='sera' placeholder='Search here'>
<a href='#'>View all</a>
</div>
<div style='clear: both;'></div>
</div>
<div class='kotaqu'>
<table class="table latestu">
<thead>
<tr>
<th scope="col">E-mail</th>
<th scope="col">Budget</th>
<th scope="col">City Destination</th>
<th scope="col">Start</th>
<th scope="col">End</th>
</tr>
</thead>
<tbody>
<tr>
<td>[email protected]</td>
<td>IDR 10000000</td>
<td>Bandung, West Java</td>
<td>27 May 2017</td>
<td>03 June 2017</td>
</tr>
<tr>
<td>[email protected]</td>
<td>IDR 10000000</td>
<td>Bandung, West Java</td>
<td>27 May 2017</td>
<td>03 June 2017</td>
</tr>
<tr>
<td>[email protected]</td>
<td>IDR 10000000</td>
<td>Bandung, West Java</td>
<td>27 May 2017</td>
<td>03 June 2017</td>
</tr>
</tbody>
</table>
</div>
</div>
<?php include ('includes/dfooter.php'); ?>