2018-05-16 07:19:55 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>hack.chat</title>
|
2019-08-18 07:24:29 +08:00
|
|
|
<link rel="manifest" href="manifest.json">
|
|
|
|
|
2018-05-16 07:19:55 +08:00
|
|
|
<link rel="stylesheet" href="style.css">
|
|
|
|
<link id="scheme-link" rel="stylesheet" href="schemes/atelier-dune.css">
|
2019-08-18 07:24:29 +08:00
|
|
|
|
|
|
|
<link rel="stylesheet" href="vendor/katex/katex.min.css">
|
|
|
|
<script src="vendor/katex/katex.min.js"></script>
|
|
|
|
<script src="vendor/remarkable-katex/remarkableKatex.min.js"></script>
|
|
|
|
|
|
|
|
<script src="vendor/hljs/highlight.min.js"></script>
|
|
|
|
<link id="highlight-link" rel="stylesheet" href="vendor/hljs/styles/hybrid.min.css">
|
|
|
|
<script src="vendor/remarkable/remarkable.min.js"></script>
|
2018-05-16 07:19:55 +08:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2019-05-12 10:35:04 +08:00
|
|
|
<audio style="display: none" id="notify-sound" preload="auto" src="audio/notify.mp3">
|
|
|
|
<source src="audio/notify.mp3" type="audio/ogg">
|
2019-05-09 14:37:13 +08:00
|
|
|
</audio>
|
2018-05-16 07:19:55 +08:00
|
|
|
<article class="container">
|
2023-06-06 01:54:14 +08:00
|
|
|
<div id="messages"></div>
|
2018-05-16 07:19:55 +08:00
|
|
|
</article>
|
|
|
|
<footer id="footer">
|
|
|
|
<div class="container">
|
2018-10-08 02:45:20 +08:00
|
|
|
<form id="chatform" class="message">
|
2018-05-16 07:19:55 +08:00
|
|
|
<textarea id="chatinput" type="text" autocomplete="off" autofocus></textarea>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</footer>
|
|
|
|
<nav id="sidebar">
|
|
|
|
<div id="sidebar-content" class="hidden">
|
2019-08-18 07:24:29 +08:00
|
|
|
<h4>Settings</h4>
|
2018-05-16 07:19:55 +08:00
|
|
|
<p>
|
|
|
|
<input id="pin-sidebar" type="checkbox">
|
|
|
|
<label for="pin-sidebar">Pin sidebar</label>
|
|
|
|
</p>
|
2019-05-09 14:37:13 +08:00
|
|
|
<p>
|
|
|
|
<input id="sound-switch" type="checkbox">
|
|
|
|
<label for="sound-switch">Sound notifications</label>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<input id="notify-switch" type="checkbox">
|
|
|
|
<label for="notify-switch">Screen notifcations</label>
|
|
|
|
</p>
|
2018-05-16 07:19:55 +08:00
|
|
|
<p>
|
|
|
|
<input id="joined-left" type="checkbox" checked>
|
|
|
|
<label for="joined-left">Join/left notify</label>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<input id="parse-latex" type="checkbox" checked>
|
2019-08-18 07:24:29 +08:00
|
|
|
<label for="parse-latex">Allow LaTeX</label>
|
2018-05-16 07:19:55 +08:00
|
|
|
</p>
|
|
|
|
<p>
|
2019-08-18 07:24:29 +08:00
|
|
|
<input id="syntax-highlight" type="checkbox" checked>
|
|
|
|
<label for="syntax-highlight">Allow Highlight</label>
|
2018-05-16 07:19:55 +08:00
|
|
|
</p>
|
|
|
|
<p>
|
2019-08-18 07:24:29 +08:00
|
|
|
<input id="allow-imgur" type="checkbox">
|
|
|
|
<label for="allow-imgur" title="Embed images like: ![Title](https://i.imgur.com/image.png)">Allow Imgur</label>
|
|
|
|
</p>
|
|
|
|
<hr>
|
|
|
|
<p>
|
|
|
|
<h4>Color scheme</h4>
|
|
|
|
<select id="scheme-selector"></select>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<h4>Highlight scheme</h4>
|
|
|
|
<select id="highlight-selector"></select>
|
|
|
|
</p>
|
|
|
|
<hr>
|
|
|
|
<p>
|
|
|
|
<button id="clear-messages">Clear all messages</button>
|
2018-05-16 07:19:55 +08:00
|
|
|
</p>
|
2019-08-18 07:24:29 +08:00
|
|
|
<hr>
|
2018-05-16 07:19:55 +08:00
|
|
|
<h4>Users online</h4>
|
|
|
|
<p>(Click user to invite)</p>
|
|
|
|
<ul id="users"></ul>
|
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
<script src="client.js"></script>
|
|
|
|
</body>
|
|
|
|
|
2018-10-08 02:45:20 +08:00
|
|
|
</html>
|