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
<?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 Soal</b></h3></center>
<div class="col-md-2">
<br>
<a href="daftarSoal.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;"> Daftar File Soal</button></a>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<div class="col-md-10">
<form action="#.php" method="post" name="form1">
<table width="100%" border="0">
<tr>
<td><h4><b>Judul Soal </b></h4></td>
<td><input type="text" name="nama_file" placeholder="Jenis Jenis Matriks" size="45" required></td>
</tr>
<tr>
<td><h4><b>Asal Soal </b></h4></td>
<td><input type="text" name="dosen_pengampu" placeholder="Ike Fitriyaningsih, S.Si., M.Si" size="45" required></td>
</tr>
<tr>
<td><h4><b>Halaman Soal </b></h4></td>
<td><input type="text" name="program_studi" size="45" placeholder="100 Halaman" 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>
</div>
</div>
</div>
</div>
<br>
<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');
?>