-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathadmin.html
44 lines (37 loc) · 1.79 KB
/
admin.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Admin chat interface</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/css/common.css" media="screen" charset="utf-8">
<link rel="stylesheet" href="/css/admin.css" media="screen" charset="utf-8">
</head>
<body>
<div class="admin-chat">
<section class="chat-window">
<!-- <span class="msg from-them">
It's pretty cool! It's pretty cool!It's pretty cool!It's pretty cool!It's pretty cool!It's pretty cool!It's pretty cool!It's pretty cool!It's pretty cool!
</span>
<span class="msg from-me">
Yeah it's pure CSS & HTML
</span> -->
</section>
<section class="chat-tools">
<textarea class="chat-input" placeholder="message to tester here"></textarea>
</section>
</div>
<div class="content-board">
<h2>Pre-written test copy.</h2>
<h3>Click to copy into text box</h3>
<div class="content-for-copying">try clicking me</div>
<div class="content-for-copying">or me!</div>
<div class="content-for-copying">Great to meet you Test User, how are you doing today?</div>
<div class="content-for-copying">Please wait while I confirm your identity. Thanks for hanging in there, I know this takes a while.</div>
</div>
<script src="https://code.jquery.com/jquery-2.2.3.min.js" integrity="sha256-a23g1Nt4dtEYOj7bR+vTu7+T8VP13humZFBJNIYoEJo=" crossorigin="anonymous"></script>
<script src="http://code.jquery.com/color/jquery.color-2.1.2.min.js" type="text/javascript"></script>
<script src="/js/admin.js" type="text/javascript"></script>
<script src="https://cdn.firebase.com/js/client/2.2.1/firebase.js"></script>
</body>
</html>