-
Notifications
You must be signed in to change notification settings - Fork 2
/
create_post.php
46 lines (27 loc) · 846 Bytes
/
create_post.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php require 'header.php'; ?>
<?php
$msg = '';
if (isset($_GET['empty'])) {
$msg = 'Field must not be empty!';
}
?>
<div class="card-header">
<h3>Write Your Story <i class="fas fa-pen-square"></i></h3>
</div>
<div class="card-body">
<?php if(!empty($msg)): ?>
<div class="alert alert-danger"><?php echo $msg; ?></div>
<?php endif; ?>
<form action="create_post_actions.php" method="POST">
<div class="from-group">
<label for="title">Title</label>
<input type="text" name="title" class="form-control" placeholder="Enter Title Here" >
</div>
<div class="form-group mt-2">
<p>Content</p>
<textarea name="content" cols="150" rows="10" placeholder="write your stories here..."></textarea>
</div>
<button name="publish" class="btn btn-primary ">Publish</button>
</form>
</div>
<?php require 'footer.php'; ?>