View sourcecode

The following files exists in this folder. Click to view.

admin.php

22 lines ASCII Unix (LF)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php 
require_once("check_login.php");
session_start();
?>
<!DOCTYPE html>
<html lang="sv">
<head>
    <meta charset="UTF-8">
    <title>Account</title>
    <style>
body {
    display: grid;
    place-items: center;
    height: 100vh;
    margin: 0;
}
    </style>
<body>
<p>Inloggningen lyckades</p>
<p><a href="logout.php">Logga ut</a></p>
</body>
</html>