1
0
mirror of https://github.com/hack-chat/main.git synced 2024-03-22 13:20:33 +08:00
hack-chat-main/client/index.html

75 lines
2.4 KiB
HTML
Raw Normal View History

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>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="katex/katex.min.css">
<link id="scheme-link" rel="stylesheet" href="schemes/atelier-dune.css">
<script src="katex/katex.min.js"></script>
<script src="katex/contrib/auto-render.min.js"></script>
<link id="highlight-link" rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/hybrid.min.css">
<link rel="manifest" href="manifest.json">
2018-05-16 07:19:55 +08:00
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"></script>
</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">
</audio>
2018-05-16 07:19:55 +08:00
<article class="container">
<div id="messages" class="messages"></div>
</article>
<footer id="footer">
<div class="container">
<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">
<p>
<input id="pin-sidebar" type="checkbox">
<label for="pin-sidebar">Pin sidebar</label>
</p>
<h4>Settings</h4>
<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>
<label for="parse-latex">Parse LaTeX</label>
</p>
<p>
<button id="clear-messages">Clear all messages</button>
2018-05-16 07:19:55 +08:00
</p>
<h4>Color scheme</h4>
<select id="scheme-selector"></select>
<p>
<input id="syntax-highlight" type="checkbox" checked>
<label for="syntax-highlight">Syntax Highlight</label>
</p>
<h4>Highlight scheme</h4>
<select id="highlight-selector"></select>
<h4>Users online</h4>
<p>(Click user to invite)</p>
<ul id="users"></ul>
</div>
</nav>
<script src="client.js"></script>
</body>
</html>