mirror of
https://github.com/fergalmoran/dss-realtime.git
synced 2025-12-22 09:38:06 +00:00
83 lines
2.5 KiB
Plaintext
83 lines
2.5 KiB
Plaintext
<!DOCTYPE html>
|
|
<html class="no-js">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>dss-realtime</title>
|
|
<meta name="description" content="Dss Realtime Host">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link rel="stylesheet" href="css/core.css">
|
|
|
|
<style>
|
|
|
|
input:focus,
|
|
select:focus,
|
|
textarea:focus,
|
|
button:focus {
|
|
outline: none !important;
|
|
}
|
|
|
|
#allPosts {
|
|
resize: none;
|
|
font-size: 12px;
|
|
border-radius: 5px;
|
|
border: #ccc solid 1px;
|
|
line-height: 14px;
|
|
height:100px;
|
|
overflow: scroll;
|
|
}
|
|
|
|
p{
|
|
margin:0;
|
|
padding:0;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<!--[if lt IE 8]>
|
|
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
|
|
<![endif]-->
|
|
|
|
<div class="container">
|
|
<div class="jumbotron">
|
|
<h1>dss-realtime</h1>
|
|
<p>Dss Realtime Host</p>
|
|
<div class="row">
|
|
<div class="col-md-4 col-sm-6 col-xs-6">
|
|
<h3>All Chatter<button id="clearAllPosts" type="button" class="btn btn-danger btn-xs pull-right">clear</button></h3>
|
|
<div id="allPosts" class="form-control"></div>
|
|
<div class="input-group">
|
|
<input id="blast" type="text" class="form-control" placeholder="send something to everyone">
|
|
<span class="input-group-btn">
|
|
<button id="send" class="btn btn-success" type="button">Send</button>
|
|
</span>
|
|
</div><!-- /input-group -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- jQuery -->
|
|
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
|
|
<script>window.jQuery || document.write('<script src="public/bower_components/jQuery/jquery.min.js"><\/script>')</script>
|
|
|
|
<!-- socket.io -->
|
|
<script src="/socket.io/socket.io.js"></script>
|
|
|
|
<!-- APP CODE -->
|
|
<script src="js/app.min.js"></script>
|
|
|
|
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
|
|
<script>
|
|
(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=
|
|
function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;
|
|
e=o.createElement(i);r=o.getElementsByTagName(i)[0];
|
|
e.src='//www.google-analytics.com/analytics.js';
|
|
r.parentNode.insertBefore(e,r)}(window,document,'script','ga'));
|
|
ga('create','UA-XXXXX-X');ga('send','pageview');
|
|
</script>
|
|
</body>
|
|
</html> |