-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (26 loc) · 829 Bytes
/
index.html
File metadata and controls
30 lines (26 loc) · 829 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Firebase Firestore Demo</title>
<!-- Firebase SDK -->
<script src="https://www.gstatic.com/firebasejs/9.6.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.6.1/firebase-firestore.js"></script>
</head>
<body>
<h1>Store Blog Posts in Firestore</h1>
<!-- Form to Add Blog Post -->
<div>
<input type="text" id="post-title" placeholder="Title">
<textarea id="post-body" placeholder="Body"></textarea>
<button id="save-post-btn">Save Post</button>
</div>
<!-- Displaying Blog Posts -->
<div id="posts-container">
<h2>Blog Posts</h2>
<ul id="posts-list"></ul>
</div>
<script src="app.js"></script>
</body>
</html>