-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathchat.html
23 lines (19 loc) · 879 Bytes
/
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
<!DOCTYPE html>
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>PassLok Chat</title>
<meta name="Keywords" content="extension">
<meta name="author" content="F. Ruiz">
<meta name="robots" content="index">
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<link rel="apple-touch-icon" href="ursa-touch-icon.png">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<iframe seamless id="chatFrame" src="" width="100%" border="none" margin=0 frameborder=0 allowfullscreen allow="microphone; camera"></iframe>
<script src="chatscript.js"></script>
</body>
</html>