generated from Nostrathomas0/nostrathomas0.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog-form.html
23 lines (21 loc) · 909 Bytes
/
blog-form.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<title>Write a blog</title>
</head>
<body>
<h1>Write a new blog here</h1>
<form id="addBlogPostForm" accept-charset="utf-8">
<label for="title">Title:</label><br>
<input type="text" id="title" name="title"><br>
<label for="content">Content:</label><br>
<textarea id="content" name="content"></textarea><br>
<button type="submit">Add Post</button>
</form>
<script type="module", ="assets/js/blogFormHandler.js" ></script>
<script type="module", ="https://www.gstatic.com/firebasejs/10.13.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/10.13.1/firebase-firestore.js"></script>
<!-- Include your games.js or a specific JavaScript file where your Firebase init and addBlogPost function are defined -->
<script type="module" src="/assets/js/games.js"></script>
</body>
</html>