-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.html
executable file
·70 lines (57 loc) · 2.62 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Tabot App</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/normalize.min.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<!--[if lt IE 8]>
<p class="browserupgrade">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">
<header>
<div class="icon fa fa-comments"></div>
<h1>Tabot <span>Dashboard</span></h1>
</header>
<section id="kpis"><!-- 3 cards -->
<div class="card">
<h4>Total users</h4>
<p id="totalUsers">...</p>
</div>
<div class="card ">
<h4>Total messages</h4>
<p id="totalMessages">...</p>
</div>
<div class="card">
<h4>Message distribution</h4>
<p>
<canvas id="activityChart" width="150" height="100"></canvas>
</p>
</div>
</section><!-- /3 cards -->
<section id="messenger"><!-- Messenger -->
<div class="left">
<select name="userId" id="userId">
<option value="loading">Loading users..</option>
</select>
<input type="text" name="message" id="message" class="messageText">
</div>
<div class="right">
<input type="button" value="Send" class="button" id="sendMessage">
</div>
</section><!-- /Messenger -->
</div><!-- Container -->
<!-- Scripts -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/Chart.js/2.1.3/Chart.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.11.2.min.js"><\/script>')</script>
<script src="js/main.js"></script>
<!-- /Scripts -->
</body>
</html>