-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.php
More file actions
37 lines (33 loc) · 1.17 KB
/
dashboard.php
File metadata and controls
37 lines (33 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<title>Dashboard</title>
</head>
<body>
<?php
session_start();
if(!isset($_SESSION['name']) || !isset($_SESSION['user_id']) || $_SESSION['name'] == '')
{
header('locaion: login.php');
echo ('<h3 class="text-dask">Please <a href="login.php">Login</a> first to check your progress!</h3>');
}
else
{
require_once 'nav.php';
include 'config.php';
?>
<div class="d-flex justify-content-center align-items-center" style="height:100%">
<h3 class="d-flex justify-content-center align-items-center">Dashboard</h3>
</div>
<?php } ?>
<script src="js/script.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.js"></script>
<script src="js/popper.js"></script>
</body>
</html>