-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathchat.html
53 lines (47 loc) · 1.88 KB
/
chat.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Students Connect</title>
<link type="text/css" rel="stylesheet" href="static/css/main.css" />
</head>
<body>
<h1>studentsConnect</h1>
<h4>a <a href="www.brutelabs.org">BRUTE LABS</a> application</h4>
<div id="current_user">
<p> Welcome, {{current_user.name}} </p>
<h3>Available Users:</h3>
<table id="available_users">
</table>
</div>
<!-- To Fix: Unable to click camera permissions box with overflow:hidden in Mac Firefox-->
{% include "flash/bin-debug/studentsconnect.html" %}
<div id="translator">
<h3>Translator:</h3>
<textarea id="query" rows="4" cols="45"></textarea>
<select id="language_selector">
<option value="en">english</option>
<option value="de">deutsch</option>
<option value="pt">português</option>
<option value="fr">français</option>
<option value="ja">日本語</option>
<option value="ar">عَرَبيْ</option>
<option value="it">italiano</option>
<option value="ru">pусский</option>
<option value="po">polski</option>
<option value="zh-CN">中文</option>
<option value="es">español</option>
<option value="ko">한국어</option>
<option value="nl">nederlands</option>
<option value="hi">हिन्दी </option>
<option value="el">Ελληνική</option>
<option value="ro">română</option>
</select>
</div>
<script type="text/javascript" src="/static/js/jquery.js"></script>
<script src='/_ah/channel/jsapi'></script>
<script type="text/javascript" src="http://www.google.com/jsapi"> </script>
<script type="text/javascript" src="/static/js/translate.js"></script>
<script type="text/javascript" src="/static/js/chat.js"></script>
<script type="text/javascript"> SC.addToken('{{token}}');</script>
</body>
</html>