-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
44 lines (43 loc) · 1.93 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
<!DOCTYPE html>
<html>
<head>
<title>LAMA Server Manager</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta name="author" content="JΔMØ,NTD">
<meta name="description" content="The advanced CS:GO Server Interface">
<meta property="og:image" content="/assets/img/favicon.png">
<meta property="og:description" content="The advanced CS:GO Server Interface">
<meta property="og:title" content="LAN Server Manager">
<meta name="revisit-after" content="15 days">
<meta name="robots" content="index,follow">
<meta name="keywords" content="Lan, Intranet, DIE-LAN, Interface, Query, Source, CS:GO, Counter-Strike">
<meta itemprop="copyrightHolder" content="Jamo">
<meta itemprop="copyrightYear" content="2019">
<meta itemprop="isFamilyFriendly" content="True">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="LAN Server Manager">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="orange">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<link rel="shortcut icon" href="/assets/media/img/favicon.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.7.2/css/all.css">
<link rel="stylesheet" href="../../assets/css/main.css" type="text/css">
<meta name="theme-color" content="#3b3b3b">
<!-- Fontawesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.8.1/css/all.css" type="text/css">
</head>
<body>
<?php
session_start();
if($_SESSION['login'] != 'user') {
header("Location: ./login.php");
die();
} else {
header("Location: ./dashboard.php");
die();
}
?>
Checking Login-State ...
</body>
</html>