-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
47 lines (41 loc) · 1.15 KB
/
index.php
File metadata and controls
47 lines (41 loc) · 1.15 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
<?php
/**
* For PHP Bootstrap login.
*
* PHP version: 7.1.9
*
* Create a Sample of Bootstrap login for localhost
* pratice to learn how to use login.
* it not recomment to use online as security flaw on md5
* require auth.php file on all secure pages
*
* @category PHP
* @package Bootstrap_Login_PHP
* @author Steven Smith <jedistev@gmail.com>
* @copyright 2018 nah ltd
* @license https://github.com/jedistev/PHPmysqlBootstrapLogin/blob/master/LICENSE
* License
* @link https://github.com/jedistev/PHPmysqlBootstrapLogin
*/
require'config/config.php';
require'auth.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php require 'nav/meta.php'; ?>
<?php require 'nav/css.php'; ?>
</head>
<body id="page-top">
<div class="wrapper">
<?php require 'nav/sidebar.php'; ?>
<!-- Page Content Holder -->
<div id="content">
<?php require 'nav/home-nav.php'; ?>
<?php require 'nav/upper-content.php'; ?>
</div>
</div>
<div class="overlay"></div>
<?php require 'nav/script.php'; ?>
</body>
</html>