-
Notifications
You must be signed in to change notification settings - Fork 2
/
chatmonitor.html
54 lines (50 loc) · 1.5 KB
/
chatmonitor.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/screen.css" media="screen, projection">
<title>Monitor Live Chats</title>
</head>
<body class="chat-monitor">
<div class="wrapper">
<h1>Monitor Live Chats</h1>
<ul class="student-list">
<li>Student Name</li>
<li>Student Name</li>
<li class="selected">Student Name</li>
<li>Student Name</li>
<li>Student Name</li>
<li>Student Name</li>
<li>Student Name</li>
<li>Student Name</li>
<li>Student Name</li>
<li>Student Name</li>
<li>Student Name</li>
<li>Student Name</li>
</ul>
<section class="conversation">
<article class="incoming message">
<a href="viewprofile.html"><img class="avatar" src="http://placekitten.com/48" width=48 height=48></a>
<div class="content">
<time pubdate>Three minutes ago</time>
<div class="text">¡Hola!</div>
</div>
</article>
<article class="outgoing message">
<a href="editprofile.html"><img class="avatar" src="http://placeowl.com/48" width=48 height=48></a>
<div class="content">
<time pubdate>Three minutes ago</time>
<div class="text">Hello!</div>
</div>
</article>
<article class="incoming message">
<a href="viewprofile.html"><img class="avatar" src="http://placekitten.com/48" width=48 height=48></a>
<div class="content">
<time pubdate>Two minutes ago</time>
<div class="text">¿Cómo estás?</div>
</div>
</article>
</section>
</div>
</body>
</html>