-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpost.html
More file actions
21 lines (21 loc) · 962 Bytes
/
post.html
File metadata and controls
21 lines (21 loc) · 962 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
<!--POST FORM TEMPLATE FOR DISCUSSION POSTS-->
<form class="container form-group" action="discussion.php" method="POST">
<h4> Post Title: <h4>
<input class="form-control-xlg " type="text" id="title_post" name="title_post" required
minlength="5" maxlength="80" style="width:100%;">
<h4>Category of Post</h4>
<select class="selectpicker" data-style="btn-primary" id="cat_post" name="cat_post" >
<option>N/A</option>
<option>Politics</option>
<option>Ideas</option>
<option>Business</option>
<option>Environment</option>
<option>Culture</option>
</select>
</br><br>
<label class="h3">Body:</label><small>(only 1,000 characters allowed)</small>
<textarea class="form-control" id="body_post" name="body_post" maxlength="1200" rows="4" style="resize:none; width:100%;" required></textarea><br/>
<div class="text-center"><button type="submit" name="submitPost" class="btn btn-lg btn-primary mb-2">Post on Forum</button></div>
</form>
</html>