forked from remotestorage/myfavoritedrinks
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (29 loc) · 925 Bytes
/
index.html
File metadata and controls
37 lines (29 loc) · 925 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
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Listable</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<script src="https://cdn.jsdelivr.net/npm/remotestoragejs@latest/release/remotestorage.js"></script>
<script src="https://cdn.jsdelivr.net/npm/remotestorage-widget@latest/build/widget.js"></script>
<script src="remotestorage-module.js"></script>
<script src="app.js"></script>
</head>
<body>
<app>
<header>
<widget-wrapper></widget-wrapper>
<h1>Listable</h1>
<small>sample <a href="https://github.com/0dataapp/listable">open-source</a> app with <a href="https://remotestorage.io/rs.js/docs/">remoteStorage.js</a> integration</small>
</header>
<main>
<form id="add-item">
<input type="text" placeholder="Add item">
<button type="submit">Add</button>
</form>
<ul id="item-list"></ul>
</main>
</app>
</body>
</html>