-
Notifications
You must be signed in to change notification settings - Fork 0
/
todo.html
44 lines (37 loc) · 1.31 KB
/
todo.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
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>To Do Dapp</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>To Do List</h1>
<div id="container">
<div class="item first">
<h2>Sign in or Sign up</h2>
<form id="sign">
<input id="alias" placeholder="username">
<input id="pass" type="password" placeholder="passphrase">
<input id="in" type="submit" value="sign in">
<input id="up" type="button" value="sign up">
</form>
</div>
<div class="item">
<h2>Create to do's</h2>
<form id="said">
<input id="say">
<input id="speak" type="submit" value="speak">
</form>
<ul></ul>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/gun/examples/jquery.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gun/gun.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gun/sea.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gun/lib/webrtc.js"></script>
<script src="./dapp.js"></script>
</body>
</html>