-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (20 loc) · 902 Bytes
/
Copy pathindex.html
File metadata and controls
20 lines (20 loc) · 902 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link id = "tab_pic" rel="shortcut icon" href="tab_pics/circus_tent.png" />
<link style="text/css" rel="stylesheet" href="stylesheet.css"/>
<title>Async Conversation</title>
</head>
<body class = oncontextmenu="return false;">
<textarea id="response"></textarea>
<input id="chatterID"/>
<input type="file" id="txtPicker" accept=".txt" />
<button id="useSavedText" onclick="useSavedText()">Load</button>
<button id = "getNextConversation" onmousedown = "getNextConversation()">Send</button>
<small id = "conversationsLeft"></small>
<button id="downloadBtn" onclick="downloadTextFile()">Download</button>
<small id="currentConversation"></small>
</body>
<script src="async.js"></script>
</html>