-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
50 lines (49 loc) · 1.46 KB
/
test.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
45
46
47
48
49
50
<body>
<section class="colonyInfo>
<!-- Name -->
<!-- Pictures -->
<!-- Description -->
</section>
<section class="awareness">
<ul>
<li><span class="posted">yes</span><span class="received">no</span><form class=""><input type="button" value="remove"></form></li>
</ul>
</section>
<!-- Set-Cookie: -->
<!-- At Server, Check Cookie -->
<!-- Server gives public key -> SPK. Lohqus path Encrypted with SPK -> Operational Cookie. -->
<section class="postKey">
</section>
<section class="broadcasts" action="/broadcast">
<!-- At Server, Check Ops Key == Lohqus Public Key -->
<form class="send">
<div class="chargeLeft">
<span class="availableCharge">3</span>
<span class="recoveryCharge">2/hr</span>
</div>
<label>
<span>Broadcast:</span>
<select name="type">
<option value="public">Public (Cost: 0, Max: 3)</option>
<option value="whisper">Whisper (Cost: 1)</option>
<option value="tell">Tell (Cost: 2)</option>
<option value="holler">Holler (Cost: 3)</option>
</select>
</label>
<label>
<span>Message:</span>
<input type="text" name="text" />
</label>
</form>
<ul class="liveBroadcasts">
<li class="m text public">Hello World</li>
<li class="m text whisper" data-keyto="Abs+342YT">Hi Friend</li>
</ul>
</section>
<!-- At Server, Check Symmetric Key For Receiver -->
<section class="receiver">
<ul class="messages">
<li class="m text">Hello World</li>
</ul>
</section>
</body>