Created
October 7, 2019 07:31
-
-
Save tfkproject/63d7b3605c602262baeba1a1841a9769 to your computer and use it in GitHub Desktop.
Untuk form tambah
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form action="simpan.php" role="form" method="POST" enctype="multipart/form-data"> | |
<div class="box-body"> | |
<div class="form-group"> | |
<label>Judul</label> | |
<input type="text" class="form-control" placeholder="Judul" name="judul" required> | |
</div> | |
<div class="form-group"> | |
<label>Keterangan</label> | |
<textarea type="text" class="form-control" placeholder="Keterangan" name="keterangan"></textarea> | |
</div> | |
<div class="form-group"> | |
<label>File Lampiran</label> | |
<input type="file" class="form-control" name="file_lampiran" required> | |
</div> | |
</div> | |
<!-- /.box-body --> | |
<div class="box-footer"> | |
<button type="submit" class="btn btn-primary"><i class="fa fa-save"></i> Simpan</button> | |
</div> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment