-
Notifications
You must be signed in to change notification settings - Fork 0
/
placing.php
41 lines (32 loc) · 1.16 KB
/
placing.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
<?php
//---------------------------------------
//Autoload Classes, MYSQL & SteamAPI
include "autoload.php";
//---------------------------------------
//Register.php code only for this specific page
include "php/placing.php";
//---------------------------------------
@session_start();
if(!isset($_SESSION['logged-in'])){
header('Location: home');
}
?>
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" class="ui" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.1.8/semantic.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.1.8/semantic.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/main.css" media="screen">
<meta charset="utf-8">
<title>LBS - LAN | Logga in</title>
</head>
<body>
<?php
include "static-loggedin/header.php";
include "static-loggedin/placing.php";
include "static-loggedin/footer.php";
?>
</body>
</html>