-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (40 loc) · 1.37 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blogs page</title>
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
</head>
<body>
<div class="header">
<h2>My Blogs</h2>
</div>
<div class="container">
<div class="sidebar">
<h3>Recent Blogs</h3>
<ul id="blogList"></ul>
<div>
<button onclick="showCreateForm()">Create New Blog</button>
</div>
</div>
<div class="content">
<h1 id="blogTitle">Welcome to My Blog!</h1>
<p id="blogContent">Click on a blog from the sidebar to read the blog or create a new one.</p>
</div>
</div>
<div id="updateForm" style="display:none;">
<h3>Update Blog</h3>
<input type="text" id="updateTitle" placeholder="New Title" />
<textarea id="updateContent" placeholder="New Content"></textarea>
<button onclick="updateBlog()">Update</button>
</div>
<div id="createForm" style="display:none;">
<h3>Create New Blog</h3>
<input type="text" id="newTitle" placeholder="Title" />
<textarea id="newContent" placeholder="Content"></textarea>
<button onclick="createBlog()">Create Blog</button>
</div>
</body>
</html>