summaryrefslogtreecommitdiff
path: root/cli/onionshare_cli/resources/templates/chat.html
diff options
context:
space:
mode:
Diffstat (limited to 'cli/onionshare_cli/resources/templates/chat.html')
-rw-r--r--cli/onionshare_cli/resources/templates/chat.html46
1 files changed, 46 insertions, 0 deletions
diff --git a/cli/onionshare_cli/resources/templates/chat.html b/cli/onionshare_cli/resources/templates/chat.html
new file mode 100644
index 00000000..b4443c09
--- /dev/null
+++ b/cli/onionshare_cli/resources/templates/chat.html
@@ -0,0 +1,46 @@
+<!DOCTYPE html>
+<html>
+
+<head>
+ <title>OnionShare</title>
+ <link href="{{ static_url_path }}/img/favicon.ico" rel="icon" type="image/x-icon">
+ <link rel="stylesheet" rel="subresource" type="text/css" href="{{ static_url_path }}/css/style.css" media="all">
+</head>
+
+<body>
+
+ <header class="clearfix">
+ <img class="logo" src="{{ static_url_path }}/img/logo.png" title="OnionShare">
+ <h1>OnionShare</h1>
+ </header>
+ <noscript>
+ <p>
+ Chat <b>requires JavaScript</b>, so you must set your Tor Browser security
+ level to <b>Safer</b> or <b>Standard</b> to join.
+ </p>
+ </noscript>
+
+ <div class="chat-container no-js">
+ <div class="chat-users">
+ <div class="editable-username">
+ <input id="username" value="{{ username }}" />
+ <p id="username-error"></p>
+ </div>
+ <ul id="user-list">
+ </ul>
+ </div>
+ <div class="chat-wrapper">
+ <div id="chat"></div>
+
+ <div class="chat-form">
+ <input type="text" id="new-message" name="new-message" placeholder="Type your message" />
+ </div>
+
+ </div>
+ </div>
+ <script src="{{ static_url_path }}/js/jquery-3.5.1.min.js"></script>
+ <script src="{{ static_url_path }}/js/socket.io.min.js"></script>
+ <script async src="{{ static_url_path }}/js/chat.js"></script>
+</body>
+
+</html> \ No newline at end of file