cryptalk/public/index.html

28 lines
701 B
HTML
Raw Normal View History

2014-09-18 12:21:07 -04:00
<!doctype html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Cryptalk</title>
<link rel="stylesheet" type="text/css" href="css/default.css">
</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 12:21:07 -04:00
<input type="text" id="input" />
</div>
2014-09-18 12:21:07 -04:00
<!-- Only include the script needed for loading the app -->
<script src="js/vendor/fandango.v20140923.min.js"></script>
2014-09-18 12:21:07 -04:00
<script src="js/bootstrap.js"></script>
</body>
</html>