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
<?php
require_once('layout/header.php');
?>
<!-- Melakukan koneksi ke dalam folder layout untuk mendapatkan header -->
<div class="col-md-12">
<center><h3><b> <img src="img/rps.png" style="width:25px; height:25px;">Daftar File Soal</b></h3></center>
</div>
<button type="submit" name="Submit" class="btn btn-primary" style="background-color:#548FF6; border: 1px solid #000000; border-radius: 4px; font-size:12px;"><img src="img/rps.png" style="width:20px; height:20px;"> Hasil Review Soal</button>
<div class="col-md-2 col-md-offset-9">
<input class="form-control" type="search" placeholder="Cari Dokumen...">
<br>
</div>
<table class="table table-stripped">
<thead>
<tr>
<th class="text-center">Judul Soal</th>
<th class="text-center">Asal Soal</th>
<th class="text-center">Halaman Soal</th>
<th class="text-center">File</th>
<th colspan=2><center>Aksi</center></th>
</tr>
<tr>
<td class="text-center">Jenis jenis Matriks</td>
<td class="text-center">Ike Fitriyaningsih, S.Si., M.Si</td>
<td class="text-center">100 Halaman</td>
<td class="text-center"><a href="#">Matriks.docx</td>
<td align=right width=70px><a href="editSoal.php" class="btn btn-block" style="height:28px; font-size:11px; border-radius : 5px; background-color:#AB2FEC; color:#ffffff;">Update</a></td>
<td align=right width=70px><a href="#"class="btn btn-block" style="height:28px; background-color:#EE2222; border-radius : 5px; font-size:11px; color:#ffffff;">Hapus</a></td>
</tr>
<tr>
<td class="text-center">Polymorphism</td>
<td class="text-center">Inte Christinawati Bu'ulolo, ST., M.T.I</td>
<td class="text-center">120 Halaman</td>
<td class="text-center"><a href="#">Polymorphism.docx</td>
<td align=right width=70px><a href="#" class="btn btn-block" style="height:28px; font-size:11px; background-color:#AB2FEC; color:#ffffff;">Update</a></td>
<td align=right width=70px><a href=""class="btn btn-block" style="height:28px; background-color:#EE2222; border-radius : 5px; font-size:11px; color:#ffffff;">Hapus</a></td>
</tr>
<tr>
<td class="text-center">Database Connectivity</td>
<td class="text-center">Togu Novriansyah Turnip, S.S.T., M.IM</td>
<td class="text-center">150 Halaman</td>
<td class="text-center"><a href="#">Database Connectivity.docx</td>
<td align=right width=70px><a href="#" class="btn btn-block" style="height:28px; font-size:11px; border-radius : 5px; background-color:#AB2FEC; color:#ffffff;">Update</a></td>
<td align=right width=70px><a href=""class="btn btn-block" style="height:28px; background-color:#EE2222; border-radius : 5px; font-size:11px; color:#ffffff;">Hapus</a></td>
</tr>
</thead>
</table>
<!-- Melakukan koneksi ke dalam folder layout untuk mendapatkan footer -->
<?php
require_once('layout/footer.php');
?>