-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.jsp
147 lines (122 loc) · 4.27 KB
/
home.jsp
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html>
<%
/*response.setHeader("Cache-Control","no-cache");
response.setHeader("Cache-Control","no-store");
response.setHeader("Pragma","no-cache");
response.setDateHeader ("Expires", 0);
String username= (String)session.getAttribute("username");
if(username== null)
{
response.sendRedirect("index.jsp?message=Please Login First");
}
else
{
*/
%>
<head>
<meta charset="UTF-8">
<title>Shield</title>
<meta
content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no'
name='viewport'>
<!-- Bootstrap 3.3.4 -->
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet"
type="text/css" />
<!-- FontAwesome 4.3.0 -->
<!-- <link
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css"
rel="stylesheet" type="text/css" /> -->
<!-- Ionicons 2.0.0 -->
<!-- Theme style -->
<link href="dist/css/AdminLTE.min.css" rel="stylesheet" type="text/css" />
<!-- AdminLTE Skins. Choose a skin from the css/skins
folder instead of downloading all of them to reduce the load. -->
<!-- iCheck -->
<!-- Morris chart -->
<meta charset="UTF-8">
</head>
<body class="skin-blue sidebar-mini">
<div class="wrapper">
<%@ include file="include/header.jsp"%>
<!-- Left side column. contains the logo and sidebar -->
<%@include file="include/aside.jsp"%>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<section class="content">
<!-- Your Page Content Here -->
<h1></h1>
<div class="row">
<!--<div style="margin-left: 1%; margin-top: 2%">
<%
String message = "";
if (message.equals("User Limit Exceed")) {
%>
<h4>
<center>
<font color="red">User Limit Exceed</font>
</center>
</h4>
<%
}
%>
</div>-->
<div class="col-md-3 col-sm-6 col-xs-12" style="z-index: 1;margin-left: 33px;font-size: larger;">
<div class="info-box">
<span class="info-box-icon bg-red"><i class="fa fa-user"></i></span>
<div class="info-box-content">
<span class="info-box-text"><a href="ViewUser?page=1"><font
color="#331e1b"><u>Total Users</u></font></a></span> <span
class="info-box-number"></span>
</div>
<!-- /.info-box-content -->
</div>
<!-- /.info-box -->
</div>
<div class="col-md-3 col-sm-6 col-xs-12" style="z-index: 1;margin-left: 9px;font-size: larger;">
<div class="info-box">
<span class="info-box-icon bg-red"><i class="fa fa-group"></i></span>
<div class="info-box-content">
<span class="info-box-text"><a href="ViewGroup?page=1"><font
color="#331e1b"><u>Total Groups</u></font></a></span> <span
class="info-box-number"></span>
</div>
<!-- /.info-box-content -->
</div>
<!-- /.info-box -->
</div>
</div>
</section>
</div>
<!-- /.content-wrapper -->
<!-- <div style="position: absolute; left: 25%; height: 36%; z-index: 0; opacity: 0.3; background-image: url("dist/img/logo_300.png"); background-position: center center; background-repeat: no-repeat; top: 15%; width: 57%; background-origin: content-box; background-size: contain; margin-left: 5%;"></div> -->
<div style="position: absolute;
left: 0%;
height: 84%;
z-index: 0;
opacity: 0.09;
background-image: url(dist/img/Shield_Icon_watermark.png);
background-position: center center;
background-repeat: no-repeat;
top: 8%;
width: 100%;
background-origin: content-box;
background-size: contain;
margin-left: 5%;"></div>
<%@include file="include/footer.jsp"%>
</div>
<!-- ./wrapper -->
<!-- jQuery 2.1.4 -->
<script src="plugins/jQuery/jQuery-2.1.4.min.js"></script>
<!-- jQuery UI 1.11.2 -->
<script src="http://code.jquery.com/ui/1.11.2/jquery-ui.min.js"
type="text/javascript"></script>
<!-- Resolve conflict in jQuery UI tooltip with Bootstrap tooltip -->
<!-- Bootstrap 3.3.2 JS -->
<script src="bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
<!-- Morris.js charts -->
</body>
<%
//}
%>
</html>