-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpost.php
More file actions
31 lines (19 loc) · 755 Bytes
/
post.php
File metadata and controls
31 lines (19 loc) · 755 Bytes
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
<div class="post-page" style="display: none;">
<div class="post-header">
<button class="backBtn" onclick="hidePost()">
<i class="bi bi-arrow-left-circle"></i>
</button>
<p>Create a Post</p>
<button class="post-settings">
<i class="bi bi-three-dots"></i>
</button>
</div>
<div class="pp-content-form">
<form action="" id="create-post-form">
<p>Post content:</p>
<textarea name="postForm" id="postForm" cols="50" rows="5" placeholder="What's happening..."></textarea>
<button class="upload-btn">Upload Media</button>
<input type="submit" value="Create Post" id="create-post-btn">
</form>
</div>
</div>