-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathchatBox.html
More file actions
30 lines (30 loc) · 790 Bytes
/
chatBox.html
File metadata and controls
30 lines (30 loc) · 790 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'self'"
/>
<meta
http-equiv="X-Content-Security-Policy"
content="default-src 'self'; script-src 'self'"
/>
<link rel="stylesheet" href="chat.css">
<title>social-browser</title>
</head>
<body>
<div class="header">
<div class="headerText">
Chat
</div>
</div>
<div id="messageBg">
</div>
<div id="messageBar">
<input type="text" class="form-control"
placeholder="message" id="messageInput" name="roomInput">
</div>
</body>
</html>