Skip to content

Commit 64d153c

Browse files
committed
first commit
0 parents  commit 64d153c

7 files changed

+4676
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

dist/bundle.js

+178
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.html

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<html lang="en">
2+
<head>
3+
<meta charset="UTF-8">
4+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>JavaScript Firebase 9</title>
7+
</head>
8+
<body>
9+
<h1>Getting started with firebase 9</h1>
10+
<form class="add">
11+
<label for="title">Title:</label>
12+
<input type="text" name="title" required>
13+
<label for="author">Author:</label>
14+
<input type="text" name="author" required>
15+
16+
<button>add a new book</button>
17+
</form>
18+
19+
<form class="delete">
20+
<label for="id">Document id:</label>
21+
<input type="text" name="id" required>
22+
23+
<button>delete a book</button>
24+
</form>
25+
26+
<script src="bundle.js"></script>
27+
</body>
28+
</html>

0 commit comments

Comments
 (0)