reviewSoal.php 1.47 KB
Newer Older
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
<?php
    require_once('layout/header.php');
?>
<!-- Melakukan koneksi ke dalam folder layout untuk mendapatkan header -->

<div class="container-fluid">
    <div class="row">
<div class="col-md-12">
    <center><h3><b> <img src="img/rps.png" style="width:25px; height:25px;">Review File Soal</b></h3></center>
    &nbsp;
</div>
</div>
</div>
        <div class="col-md-2 col-md-offset-9">
          <input class="form-control" type="search" placeholder="Cari Dokumen...">
          <br>
        </div>
<table class="table table-hover text-center">
    <thead>
        <th class="text-center">Judul Soal</th>
        <th class="text-center">Asal Soal</th>
        <th class="text-center">Jumlah Halaman</th>
        <th class="text-center">File</th>
</thead>

<tbody class="table-hover">
    <tr>
        <td>Jenis jenis Matriks</td>
        <td>Ike Fitriyaningsih, S.Si., M.Si</td>
        <td>100 Halaman</td>
        <td><a href="#">Matriks.docx</td>
    </tr>

    <tr>
        <td>Polymorphism</td>
        <td>Inte Christinawati Bu'ulolo, ST., M.T.I</td>
        <td>120 Halaman</td>
        <td><a href="#">Polymorphism.docx</td>
    </tr>

    <tr>
        <td>Database Connectivity</td>
        <td>Togu Novriansyah Turnip, S.S.T., M.IM</td>
        <td>150 Halaman</td>
        <td><a href="#">Database Connectivity.docx</td>
    </tr>

    
</tbody>
</table>


<!-- Melakukan koneksi ke dalam folder layout untuk mendapatkan footer -->
<?php
    require_once('layout/footer.php');
?>