-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.php
32 lines (29 loc) · 1.31 KB
/
about.php
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
<?php include 'header.php'; ?>
<div class="container-fluid">
<div class="card shadow mb-4">
<div class="card-header py-3">
<h6 class="m-0 font-weight-bold text-primary">Edit Halaman About</h6>
</div>
<div class="card-body">
<div id="editor">
<form action="test.php" method="post">
<div class="form-group">
<input type="text" placeholder="Judul" name="judul" class="form-control" >
</div>
<div class="form-group">
<input id="imgInp" type="file" placeholder="Judul" class="form-control" name="gambar">
</div>
<center><img id="blah" alt="your cover image" style="width: 50%" src=""></center><br>
<div class="form-group">
<textarea name="konten" id='edit' style="margin-top: 30px;" placeholder="Type some text"></textarea>
</div>
<br>
<div class="form-group">
<input type="submit" value="Simpan" class="btn btn-success pull-right">
</div>
</form>
</div>
</div>
</div>
</div>
<?php include 'footer.php'; ?>