forked from HelloZeroNet/ZeroBoard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (30 loc) · 1.17 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>ZeroBoard</title>
<meta charset="utf-8">
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="css/all.css" />
</head>
<body>
<h1>ZeroBoard</h1>
<h3 class="description">Demo for dynamic, decentralized content publishing.</h3>
<!--<h3 class="description"><a href="#Working">How does it works?</a></h3>-->
<div class="message message-new">
<div class="avatar"></div>
<div class="body"><input type='text' placeholder="Try it: Add your message!" maxlength="255"></div>
<a href='#Submit' class='submit'>Submit message</a>
</div>
<div class='notification error' id="passive_error">Your FileServer port is not opened! New messages will not appear automatically. <a href='#Reload'>Reload now</a></div>
<h2 style='margin-left: 18px'>Last messages:</h2>
<div class="messages">
<div class="message template">
<div class="avatar"></div>
<div class="body">Hello 1,2,3,4</div>
<div class="added">3 minutes ago</div>
</div>
</div>
<center><a href="#LoadAll" class="submit more">▿ Display older messages ▿</a></center>
<script type="text/javascript" src="js/all.js?lang={lang}"></script>
</body>
</html>