2020-03-08 05:21:43 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
|
2020-08-19 19:40:00 -04:00
|
|
|
<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 }}" />
|
2020-08-21 08:16:21 -04:00
|
|
|
<p id="username-error"></p>
|
2020-08-19 19:40:00 -04:00
|
|
|
</div>
|
|
|
|
<ul id="user-list">
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<div class="chat-wrapper">
|
|
|
|
<div id="chat"></div>
|
2020-03-08 05:21:43 -04:00
|
|
|
|
2020-08-19 19:40:00 -04:00
|
|
|
<div class="chat-form">
|
2020-08-19 20:22:15 -04:00
|
|
|
<input type="text" id="new-message" name="new-message" placeholder="Type your message" />
|
2020-03-08 05:21:43 -04:00
|
|
|
</div>
|
2020-08-19 19:40:00 -04:00
|
|
|
|
2020-03-08 05:21:43 -04:00
|
|
|
</div>
|
2020-08-19 19:40:00 -04:00
|
|
|
</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>
|