-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (54 loc) · 2.26 KB
/
index.html
File metadata and controls
62 lines (54 loc) · 2.26 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<meta name="description" content="">
<!--<link id="favicon" rel="icon" href="" type="image/x-icon">-->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- import the webpage's stylesheet -->
<link rel="stylesheet" href="/style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.js"></script>
<script src="/gun.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/mix.js"></script>
-->
<!-- RAD/LEX -->
<!--
<script src="https://cdn.jsdelivr.net/npm/gun/lib/radix.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gun/lib/radisk.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gun/lib/store.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gun/lib/rindexed.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gun/lib/path.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gun/lib/list.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gun/lib/promise.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gun/lib/then.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gun/sea.js"></script>
-->
</head>
<body>
<label>Nodejs http with Gun.js</label>
<a href="/index_RAD.html">Chat RAD</a>
<div id="publicchat">
Public Chat
<div id="publicchatlist" style="background-color: darkgray;overflow-y: scroll;">
Not Init.
</div>
<div id="publicchatarea"style="height:22px;width:100%">
<input id="inputpublicchat" value="" placeholder="type here and press enter">
</div>
</div>
<div id="Modal" class="modal">
<div id="dialog" class="modal-content">
<p>Message:<label id="dialogmessage">None</label></p>
<button id="btndialogokay">Okay</button>
</div>
</div>
<script src="/client_chat.js" defer></script>
<footer>
</footer>
</body>
</html>