-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPost.html
More file actions
38 lines (36 loc) · 1.19 KB
/
Copy pathPost.html
File metadata and controls
38 lines (36 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
id="icon"
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0"
/>
<link rel="stylesheet" href="./style.css" />
<title>Login Page</title>
</head>
<body>
<div class="navbar">
<a href="./index.html"
><span class="material-symbols-outlined"> home </span>Dashboard</a
>
<a href="./Post.html"
><span class="material-symbols-outlined"> add </span>Post</a
>
<button class="night-mode">
<span class="material-symbols-outlined"> dark_mode </span>
</button>
</div>
<div class="post-container">
<div class="post-form">
<input type="text" id="post-title" placeholder="Enter the title of your post" />
<textarea id="post-description" placeholder="Enter the description of your post"></textarea>
<button id="post-button" type="button">Post</button>
</div>
<div class="post-list"></div>
</div>
<script src="./index.js"></script>
</body>
</html>