cryptalk/public/index.html

40 lines
763 B
HTML
Raw Normal View History

2014-09-18 18:21:07 +02:00
<!doctype html>
<head>
<title>Cryptalk</title>
2015-12-30 00:38:05 +01:00
<meta charset="utf-8">
2014-09-22 22:11:13 +02:00
2015-12-30 00:38:05 +01:00
<link rel="stylesheet" type="text/css" href="css/default.css">
<link rel="icon" type="image/png" href="gfx/icon_32x32.png">
2019-09-17 19:21:35 +01:00
<script src="js/vendor/requirejs-2.3.6/require.js"></script>
2017-02-07 21:19:23 +01:00
2014-09-18 18:21:07 +02:00
</head>
<body>
<!-- Messages -->
<!-- Each message is contained within an li element -->
<ul id="chat">
<li>SRV> Booting ...</li>
</ul>
<!-- Message input -->
<div id="input_wrapper" class="loading">
<div id="loader"><span>|</span></div>
2014-09-18 18:21:07 +02:00
<input type="text" id="input" />
</div>
2017-02-07 21:19:23 +01:00
<!--
Production JS
2017-02-08 21:24:58 +01:00
-->
2017-02-07 21:19:23 +01:00
<script src="js/cryptalk.min.js"></script>
2017-02-22 22:22:28 +01:00
2017-02-07 21:19:23 +01:00
<!--
Development JS
2017-02-22 22:22:28 +01:00
2017-02-07 21:19:23 +01:00
<script src="js/lib/main.js"></script>
-->
2014-09-18 18:21:07 +02:00
</body>
2014-09-24 22:12:28 +02:00
</html>