-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexpired.php
33 lines (31 loc) · 1022 Bytes
/
expired.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
<?php
session_start();
if (isset($_SESSION['userLoggedIn']))
header('Location: gallery')
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php include_once($_SERVER['DOCUMENT_ROOT'] . '/camagru/includes/links.php'); ?>
<link rel="stylesheet" href="/camagru/assets/css/login.css">
<script src="/camagru/assets/js/themeSwitcher.js"></script>
<title>Document</title>
</head>
<body>
<?php include_once($_SERVER['DOCUMENT_ROOT'] . '/camagru/includes/navbar.php'); ?>
<div class="everything">
<div class="back"></div>
<div class="container">
<div class="jumbotron">
<h1 class="display-4">Session expired!</h1>
<hr>
<p class="lead">Please re-login to renew your session.</p>
<a class="btn-lg botona" href="/camagru/login" style="text-decoration:none; margin:auto; margin-top:20px; display:inline-block">Login</a>
</div>
</div>
</div>
<div class="loading-container" id="loading" style="display: flex;">
<div class="spinner-border m-auto" style="color: white;"></div>
</div>
</body>
</html>