-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
97 lines (67 loc) · 2.66 KB
/
index.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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="#" rel="shortcut icon" />
<link href="plugins/bootstrap-4.5.3-dist/css/bootstrap.min.css" rel="stylesheet">
<link href="plugins/fontawesome-free-5.15.1-web/css/all.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="styles/index.css">
<title>Loginseite</title>
<?php
//navbar includen
$currentpage = "index";
include('navbar/navbar.php');
?>
</ul>
</div>
</nav>
</head>
<body>
<?php
/*
Menü einbinden
*/
/**
* A simple, clean and secure PHP Login Script / MINIMAL VERSION
*
* Uses PHP SESSIONS, modern password-hashing and salting and gives the basic functions a proper login system needs.
*
* @author Panique
* @link https://github.com/panique/php-login-minimal/
* @license http://opensource.org/licenses/MIT MIT License
*/
// checking for minimum PHP version
if (version_compare(PHP_VERSION, '5.3.7', '<')) {
exit("Sorry, Simple PHP Login does not run on a PHP version smaller than 5.3.7 !");
} else if (version_compare(PHP_VERSION, '5.5.0', '<')) {
// if you are using PHP 5.3 or PHP 5.4 you have to include the password_api_compatibility_library.php
// (this library adds the PHP 5.5 password hashing functions to older versions of PHP)
require_once("libraries/password_compatibility_library.php");
}
// include the configs / constants for the database connection
require_once("/documents/config/db.php");
require_once("utils/util.php");
// load the login class
require_once("classes/Login.php");
// include the to-be-used language, english by default. feel free to translate your project and include something else
require_once('translations/en.php');
// include the PHPMailer library
require_once('libraries/PHPMailer.php');
// create a login object. when this object is created, it will do all login/logout stuff automatically
// so this single line handles the entire login process. in consequence, you can simply ...
$login = new Login();
// ... ask if we are logged in here:
if ($login->isUserLoggedIn() == true) {
// the user is logged in. you can do whatever you want here.
// for demonstration purposes, we simply show the "you are logged in" view.
header("location: platinenindex.php");
} else {
// the user is not logged in. you can do whatever you want here.
// for demonstration purposes, we simply show the "you are not logged in" view.
include("views/not_logged_in.php");
}
?>
<script src='plugins/fontawesome-free-5.15.1-web/a076d05399.js'></script>
</body>
</html>