83 lines
3.6 KiB
HTML
83 lines
3.6 KiB
HTML
<!DOCTYPE html>
|
|
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
|
|
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
|
|
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
|
|
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<title>TradeChat</title>
|
|
<meta name="description" content="TradeChat - the quick and dirty chat with file transfer">
|
|
<meta name="author" content="Carlos Andrés Solís R." />
|
|
<meta name="viewport" content="width=device-width">
|
|
|
|
<link rel="stylesheet" href="css/bootstrap.min.css">
|
|
<style>
|
|
body {
|
|
padding-top: 50px;
|
|
padding-bottom: 20px;
|
|
}
|
|
.control-label, .help-inline {
|
|
display: none;
|
|
}
|
|
#chatlog {
|
|
min-height:300px;
|
|
height: 300px;
|
|
overflow: scroll;
|
|
}
|
|
</style>
|
|
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
|
|
<link rel="stylesheet" href="css/main.css">
|
|
|
|
<script src="js/vendor/modernizr-2.6.2-respond-1.1.0.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<!--[if lt IE 7]>
|
|
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p>
|
|
<![endif]-->
|
|
|
|
<div class="navbar navbar-inverse navbar-fixed-top">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="index.html">TradeChat</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="container">
|
|
<div id="chatlog" class="well">
|
|
<!--//Insert content here-->
|
|
</div>
|
|
</div>
|
|
<form class="well form-inline" role="form" name="chatPost" enctype="multipart/form-data" action="fileUploader.php" method="post">
|
|
<div class="input-group">
|
|
<input type="text" id="message" name="message" class="form-control input-sm" placeholder="Insert message here:" />
|
|
<span class="input-group-btn">
|
|
<button type="button" id="sendButton" name="sendButton" class="btn btn-sm btn-primary">Send</button>
|
|
<button type="file" id="attachButton" name="attachButton" class="btn btn-sm btn-default"><span class="glyphicon glyphicon-file"></span></button>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
<hr>
|
|
|
|
<footer>
|
|
<p>© Carlos Solís - AZK.Ware 2013 - Licensed under AGPL v3 or higher - Some components under compatible licenses; see COPYING for details</p>
|
|
</footer>
|
|
<!--<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
|
|
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.10.1.min.js"><\/script>')</script>-->
|
|
<script src="js/vendor/jquery-1.10.1.min.js"></script>
|
|
|
|
<script src="js/vendor/bootstrap.min.js"></script>
|
|
|
|
<script src="js/plugins.js"></script>
|
|
<script src="js/chatroom.js"></script>
|
|
<!--
|
|
<script>
|
|
var _gaq=[['_setAccount','UA-XXXXX-X'],['_trackPageview']];
|
|
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
|
|
g.src='//www.google-analytics.com/ga.js';
|
|
s.parentNode.insertBefore(g,s)}(document,'script'));
|
|
</script>
|
|
-->
|
|
</body>
|
|
</html>
|