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

<center><h3><b> <img src="img/rps.png" style="width:25px; height:25px;">Upload File RPS</b></h3></center>

<div class="col-md-2">

    <br>
    <a href="daftarRPS.php"><button type='button' class='btn btn-primary center-block' style="margin-bottom:20px; border: 1px solid #000000; border-radius: 4px; font-size:12px; background-color:#548FF6;"><img src="img/rps.png" style="width:18px; height:18px;">&nbsp; Daftar File RPS</button></a>
</div>
  
<div class="container-fluid">
        <div class="row">
            <div class="col-md-12">
                <div class="col-md-10">

    <form action="tambah.php" method="post" name="form1">
        <table width="100%" border="0">
		    <tr> 
                <td><h4><b>Nama File   </b></h4></td>
                <td><input type="text" name="nama_file" placeholder="Pemograman Teknologi .NET" size="45" required></td>
            </tr>
            
            <tr> 
                <td><h4><b>Dosen Pengampu   </b></h4></td>
                <td><input type="text" name="dosen_pengampu" placeholder="Lit Malem Ginting M.T" size="45" required></td>
            </tr>

            <tr> 
                <td><h4><b>Program Studi   </b></h4></td>
                <td><input type="text" name="program_studi" size="45" placeholder="S1 Informatika" required></td>
            </tr>

            <tr> 
                <td><h4><b>Upload File   </b></h4></td>
               
                <td><form action="#" method="post" enctype="multipart/form-data" class="btn btn-block">
                    <input type="file" name="file">
                </form></td>
            </tr>
            
            <br>
            <br>

            
                
        
            
        </table>
    </form>
    

<br>
</div>
</div>
</div>
</div>
<button type='button' class='btn btn-success center-block' style="margin-bottom:20px;">Upload</button>

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