forked from FrontendMasters/service-workers-offline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadd-post.html
39 lines (37 loc) · 843 Bytes
/
add-post.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>My Ramblings :: Add Post</title>
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<header>
<h1>My Ramblings</h1>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about">About</a></li>
<li><a href="/contact">Contact</a></li>
<li><a href="/logout">Logout</a></li>
</ul>
</nav>
<div id="connectivity-status" class="hidden"></div>
</header>
<main>
<h1>Add Post</h1>
<p>
Title: <input id="new-title" size="40">
</p>
<p>
<textarea id="new-post" cols="70" rows="15"></textarea>
</p>
<p>
<button type="button" id="btn-add-post">Add Post</button>
</p>
</main>
<script src="/js/external/idb-keyval-iife.min.js"></script>
<script src="/js/blog.js"></script>
<script src="/js/add-post.js"></script>
</body>
</html>