-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharmada.php
More file actions
57 lines (45 loc) · 1.62 KB
/
armada.php
File metadata and controls
57 lines (45 loc) · 1.62 KB
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
<div style='min-height:630px;'>
<br><br><br><br><br>
<form class="form-horizontal" method="post" action="proses_fasilitas.php" enctype="multipart/form-data">
<fieldset>
<!-- Form Name -->
<center><legend><h2>Tambah Data</h2></legend></center><br><br>
<!-- Text input-->
<div class="form-group">
<label class="col-md-4 control-label" for="">Jenis</label>
<div class="col-md-4">
<input id="" name="judul" type="text" placeholder="" class="form-control input-md" required>
</div>
</div>
<div class="form-group">
<label class="col-md-4 control-label" for="">Nama</label>
<div class="col-md-4">
<input id="" name="nama" type="text" placeholder="" class="form-control input-md" required>
</div>
</div>
<!-- Textarea -->
<div class="form-group">
<label class="col-md-4 control-label" for="textarea">Rincian</label>
<div class="col-md-4">
<textarea class="form-control" id="textarea" name="rincian" required></textarea>
</div>
</div>
<!-- File Button -->
<div class="form-group">
<label class="col-md-4 control-label" for="filebutton">Masukkan Gambar</label>
<div class="col-md-4">
<input id="filebutton" name="fileToUpload" class="input-file" type="file">
</div>
</div>
<!-- Button -->
<div class="form-group">
<label class="col-md-4 control-label" for=""></label>
<div class="col-md-4">
<button type="submit" id="" name="simpan" class="btn btn-primary">Simpan</button>
<button id="reset" name="reset" class="btn btn-danger" onclick="history.back();">Back</button>
</div>
</div>
</fieldset>
</form>
</div>
</div>