create a dashboard for the login

This commit is contained in:
Ismail Cadaroski 2017-01-24 19:26:51 +01:00
parent f36daf613f
commit 86861c9ccd
1 changed files with 20 additions and 0 deletions

20
db/dashboard.php Normal file
View File

@ -0,0 +1,20 @@
<?php
require('db/db.php');
include("db/auth.php");
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Dashboard - Secured Page</title>
<link rel="stylesheet" href="css/loginstyle.css" />
</head>
<body>
<div class="form">
<p>Dashboard</p>
<p>This is another secured page.</p>
<p><a href="db/index.php">Home</a></p>
<a href="db/logout.php">Logout</a>
</div>
</body>
</html>