-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin.html
116 lines (108 loc) · 3.62 KB
/
admin.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Chatbot - Admin</title>
<link href="/css/bootstrap.min.css" rel="stylesheet" />
<link href="/css/styles.css" rel="stylesheet" />
<!--Icons-->
<script src="/js/lumino.glyphs.js"></script>
<style>
a:hover {
cursor: pointer;
}
</style>
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#sidebar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">
<span id="name_chatbot"></span>
Admin
</a>
</div>
</div>
<!-- /.container-fluid -->
</nav>
<div id="sidebar-collapse" class="col-sm-3 col-lg-2 sidebar">
<ul class="nav menu">
<li href="admin.html" class="active">
<a>
<svg class="glyph stroked app-window"><use xlink:href="#stroked-app-window"></use></svg>
Thông tin
</a>
</li>
<li>
<a href="utils.html">
<svg class="glyph stroked app-window"><use xlink:href="#stroked-app-window"></use></svg>
Công cụ
</a>
</li>
<li role="presentation" class="divider"></li>
<li>
<a href="logout.html">
<svg class="glyph stroked male-user"><use xlink:href="#stroked-male-user"></use></svg>
Đăng xuất
</a>
</li>
<li role="presentation" class="divider"></li>
</ul>
<div class="attribution">
Template by
<a href="http://www.medialoot.com/item/lumino-admin-bootstrap-template/">Medialoot</a>
<br />
<a href="http://www.glyphs.co" style="color: #333;">Icons by Glyphs</a>
</div>
</div>
<!--/.sidebar-->
<div class="col-sm-9 col-sm-offset-3 col-lg-10 col-lg-offset-2 main">
<div class="row">
<ol class="breadcrumb">
<li>
<a href="#">
<svg class="glyph stroked home"><use xlink:href="#stroked-home"></use></svg>
</a>
</li>
</ol>
</div>
<!--/.row-->
<div class="row">
<div class="col-lg-12">
<h2>Thông tin</h2>
</div>
<div class="col-md-12">
<div class="panel panel-success">
<!-- panel-default -->
<div class="panel-heading" id="ptnkheader"></div>
<div class="panel-body">
<div class="col-md-12 col-lg-12 col-sm-12 col-xs-12" id="ptnkstats"></div>
<div class="col-md-6 col-lg-6 col-sm-6 col-xs-6" id="ptnkwr"></div>
<div class="col-md-6 col-lg-6 col-sm-6 col-xs-6" id="ptnkinfo"></div>
<div class="col-md-12 col-lg-12 col-sm-12 col-xs-12" id="ptnkcr"></div>
</div>
</div>
</div>
</div>
<!-- /.row -->
</div>
<!--/.main-->
<script src="/js/jquery-3.5.0.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
<script src="/js/moment.min.js"></script>
<script src="/js/moment.locale.vi.js"></script>
<script src="/js/cookie.js"></script>
<script src="/js/admin.js"></script>
</body>
<script>
$(document).ready(function() {
});
</script>
</html>