-
Notifications
You must be signed in to change notification settings - Fork 4
/
settings.html
36 lines (36 loc) · 960 Bytes
/
settings.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>js-ipfs</title>
<link rel="stylesheet" href="settings.css">
<link href="https://fonts.googleapis.com/css?family=Muli|Open+Sans:300,400" rel="stylesheet">
</head>
<body>
<div class="section">
<h1>Your ID</h1>
<div class="id">-</div>
</div>
<div class="section">
<h1>Your Addresses</h1>
<div class="addresses">-</div>
</div>
<div class="section">
<h1>Status</h1>
<div class="status">-</div>
</div>
<div class="section">
<h1>Peers</h1>
<div class="peers">-</div>
</div>
<div class="section">
<h2>Connected Peers</h2>
<div class="peer-ids"></div>
<input type="text" placeholder="address to connect to" /> <button>Connect</button>
</div>
<h3>Daemon Control</h3>
<button class="go-offline" disabled>Stop</button>
<button class="go-online" disabled>Start</button>
<script src="settings.js"></script>
</body>
</html>