-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard.php
104 lines (70 loc) · 2.48 KB
/
dashboard.php
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
<?php
session_start();
include('includes/config.php');
include('includes/checklogin.php');
checklogin();
?>
<!doctype html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<meta name="theme-color" content="#3e454c">
<title>DashBoard</title>
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/fileinput.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body style="background-image:url(images/hostel.jpg width: 10px;)">
<?php include("includes/header.php");?>
<div class="ts-main-content">
<?php include("includes/sidebar.php");?>
<div class="content-wrapper">
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<h2 style="color: Green; font-weight: bolder; font-size:65px; text-align:center">Dashboard</h2> <br> <br>
<div class="row" style="text-align:center; font-size: larger; font-weight:bolder">
<div class="col-md-12">
<div class="row">
<div class="col-md-3">
<div class="panel panel-default">
<div >
<div>
<div style="font-size: 55px; font-weight:bolder; color:black" >My Profile</div>
</div>
</div>
<a href="my-profile.php" class="block-anchor panel-footer" style="font-size: 45px;">Full Detail <i class="fa fa-arrow-right"></i></a> <br><br>
</div>
</div>
<div class="col-md-3">
<div class="panel panel-default">
<div >
<div class="stat-panel text-center">
<div style="font-size: 55px; font-weight:bolder; color:black" >My Room</div>
</div>
</div>
<a href="room-details.php" class="block-anchor panel-footer text-center" style="font-size: 45px;">See All <i class="fa fa-arrow-right"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!
<script src="js/jquery.min.js"></script>
<script src="js/jquery.dataTables.min.js"></script>
<script src="js/Chart.min.js"></script>
<script src="js/fileinput.js"></script>
<script src="js/chartData.js"></script>
<script src="js/main.js"></script>
</body>
</html>