-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchatbox.html
83 lines (64 loc) · 2.18 KB
/
chatbox.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html>
<head>
<script type="module" src="https://github.com/5uryaprakashPi/solidity-messenger/blob/main/chatbox.js"></script>
<link rel="stylesheet" href="https://github.com/5uryaprakashPi/solidity-messenger/blob/main/chatbox.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="header">
<table>
<tr>
<td style="width: 85%;">
<h1>DM App</h1>
</td>
<td style="text-align: right;">
<h1 id="greeting"></h1>
</td>
</tr>
</table>
</div>
<dialog data-model>
<label for="userName">Enter your username</label><br>
<input type="text" id="userName" required minlength="5" maxlength="20"><br>
<button id="register">Register</button>
</dialog>
<div class="row">
<div class="col-3 menu">
<ul id="friends">
<!-- <li>The Flight</li>
<li>The City</li>
<li>The Island</li>
<li>The Food</li> -->
</ul>
</div>
<div class="col-9">
<!-- <h1>The City</h1> -->
<p id="messageData">Click on your friend list to see the message here</p>
<!-- <p>Resize the browser window to see how the content respond to the resizing.</p> -->
</div>
</div>
<div class="row">
<div class="col-3 menu">
<ul>
<li>Compose Message</li>
</ul>
<table>
<tr>
<td><label for="to">TO</label></td>
<td><input id="to" type="text" name="to" /></td>
</tr>
<tr>
<td><label for="message">Message</label></td>
<td><input id="message" type="text" name="message" /></td>
</tr>
<tr>
<td colspan="2">
<input id="send" type="button" value="Send" onclick="send()" />
</td>
</tr>
</table>
</div>
</div>
</body>
</html>