31 lines
706 B
HTML
31 lines
706 B
HTML
<!doctype html>
|
|
<head>
|
|
<title>Cryptalk</title>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<link rel="stylesheet" type="text/css" href="css/default.css">
|
|
<link rel="icon" type="image/png" href="gfx/icon_32x32.png">
|
|
|
|
</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>
|
|
<input type="text" id="input" />
|
|
</div>
|
|
|
|
<!-- Only include the script needed for loading the app -->
|
|
<script src="js/vendor/fandango.v20140924.min.js"></script>
|
|
<script src="js/bootstrap.js"></script>
|
|
|
|
</body>
|
|
</html>
|