-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathhome.php
More file actions
181 lines (153 loc) · 7.28 KB
/
home.php
File metadata and controls
181 lines (153 loc) · 7.28 KB
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<?php
session_start();
if(!$_SESSION['gym_database']){
header('location:index.php');
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="Dashboard">
<meta name="keyword" content="Dashboard, Bootstrap, Admin, Template, Theme, Responsive, Fluid, Retina">
<title>THE ENERGY HUB</title>
<!-- Favicons -->
<link href="img/favicon.jpg" rel="icon">
<!-- Bootstrap core CSS -->
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!--external css-->
<link href="lib/font-awesome/css/font-awesome.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="lib/gritter/css/jquery.gritter.css" />
<!-- Custom styles for this template -->
<link href="css/style.css" rel="stylesheet">
<link href="css/style-responsive.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Acme&family=Kalam:wght@300;400;700&display=swap" rel="stylesheet">
<style>
.image:hover {
outline-color: white;
opacity: 0.5;
}
body {
font-family: 'Acme', sans-serif;
font-family: 'Kalam', cursive;
}
</style>
</head>
<body>
<section id="container">
<!-- **********************************************************************************************************************************************************
TOP BAR CONTENT & NOTIFICATIONS
*********************************************************************************************************************************************************** -->
<!--header start-->
<header class="header black-bg">
<div class="sidebar-toggle-box">
<div class="fa fa-bars tooltips" data-placement="right" data-original-title="Toggle Navigation"></div>
</div>
<!--logo start-->
<a href="home.php" class="logo">THE ENERGY<span>HUB</span></b></a>
<!--logo end-->
<div class="top-menu">
<ul class="nav pull-right top-menu">
<li><a class="logout" href="index.php" style="font-size: 18px;">Logout</a></li>
</ul>
</div>
</header>
<!--header end-->
<!-- **********************************************************************************************************************************************************
MAIN SIDEBAR MENU
*********************************************************************************************************************************************************** -->
<!--sidebar start-->
<aside>
<div id="sidebar" class="nav-collapse ">
<!-- sidebar menu start-->
<ul class="sidebar-menu" id="nav-accordion">
<p class="centered"><a href="about.php" ><img src="img/favicon.jpg" class="img-circle" width="80" ></a></p>
<h5 class="centered" style="font-size: 16px;">MORE ABOUT US?</h5>
<li class="mt">
<li class="sub-menu">
<a href="javascript:;">
<i class="fa fa-dashboard"></i>
<span style="font-size: 17px;">Dashboard</span>
</a>
<ul class="sub">
<li><a href="gallery.html" style="font-size: 14px;">Gallery</a></li>
<li><a href="pricing_table.html" style="font-size: 14px;">Pricing Chart</a></li>
</ul>
</li>
</li>
<li class="sub-menu">
<a href="javascript:;">
<i class="fa fa-tasks"></i>
<span style="font-size: 17px;">Forms</span>
</a>
<ul class="sub">
<li><a href="TrainerForm.php" style="font-size: 14px;">Trainer Form</a></li>
<li><a href="MemberForm.php" style="font-size: 14px;">Member Form</a></li>
<li><a href="contactform.php" style="font-size: 14px;">Contact Form</a></li>
</ul>
</li>
<li class="sub-menu">
<a href="javascript:;">
<i class="fa fa-th"></i>
<span style="font-size: 17px;">Data Tables</span>
</a>
<ul class="sub">
<li><a href="General-table.php" style="font-size: 14px;">General</a></li>
<li><a href="Batch-n-Package.php" style="font-size: 14px;">Batches n Packages</a></li>
<li><a href="count.php" style="font-size: 14px;">Count</a></li>
<li><a href="Accounts.php" style="font-size: 14px;">Accounts</a></li>
</ul>
</li>
</ul>
<!-- sidebar menu end-->
</div>
</aside>
<!--sidebar end-->
<!-- **********************************************************************************************************************************************************
MAIN CONTENT
*********************************************************************************************************************************************************** -->
<!--main content start-->
<div style="background-image: url('img/ball.jpg'); height: 100vh; background-repeat: no-repeat; background-size: cover;">
<section id="main-content">
<section class="wrapper">
<h1 style="font-size: 50px; text-align: center; color: black; " ></i>WELCOME ADMIN!</h1>
<h2 style="font-size: 20px; text-align: center; color: black;">Have a nice day:)</h2>
<!--<center><img src="img/favicon.jpg" height="300"></center>-->
<!--<h3><b>THE MOTIVATION CLUB</b></h3>-->
</section>
</section>
<!--main content end-->
<!-- js placed at the end of the document so the pages load faster -->
<script src="lib/jquery/jquery.min.js"></script>
<script src="lib/bootstrap/js/bootstrap.min.js"></script>
<script src="lib/fancybox/jquery.fancybox.js"></script>
<script class="include" type="text/javascript" src="lib/jquery.dcjqaccordion.2.7.js"></script>
<script src="lib/jquery.scrollTo.min.js"></script>
<script src="lib/jquery.nicescroll.js" type="text/javascript"></script>
<!--common script for all pages-->
<script src="lib/common-scripts.js"></script>
<script type="text/javascript" src="lib/gritter/js/jquery.gritter.js"></script>
<script type="text/javascript" src="lib/gritter-conf.js"></script>
<!--script for this page-->
<script type="text/javascript">
$(document).ready(function() {
var unique_id = $.gritter.add({
// (string | mandatory) the heading of the notification
title: 'Welcome to THE MOTIVATION CLUB!',
// (string | mandatory) the text inside the notification
text: 'Hover me to enable the Close Button. You can hide the left sidebar clicking on the button next to the logo.',
// (string | optional) the image to display on the left
image: 'img/ui-sam.jpg',
// (bool | optional) if you want it to fade out on its own or just sit there
sticky: false,
// (int | optional) the time you want it to be alive for before fading out
time: 8000,
// (string | optional) the class name you want to apply to that specific message
class_name: 'my-sticky-class'
});
return false;
});
</body>
</html>