-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
30 lines (26 loc) · 808 Bytes
/
popup.html
File metadata and controls
30 lines (26 loc) · 808 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>
<title>Second friend</title>
<link rel="stylesheet" href="css/app.css" title="application" type="text/css" media="screen" charset="utf-8">
<div style="display:none;" id="view-loading">
Setting up an anonymous chat.
</div>
<div id="view-chat">
<header>
<div itemscope>
<span itemprop="name">Camille Waddington</span>.</p>
<img src="fixtures/images/grownup.png" itemprop="image" />
</div>
</header>
<section class="chat">
<textarea id="chat-history"></textarea>
<input type="text" id="chat-input" />
</section>
</div>
<!-- JavaScript and HTML must be in separate files for security. -->
<script src="js/popup.js"></script>
</head>
<body>
</body>
</html>