The following files exists in this folder. Click to view.
admin.php24 lines UTF-8 Unix (LF)
<?php
session_start();
if(!isset($_SESSION['admin'])){
include('check_login.php');
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="bulma.css">
<title>Admin page</title>
</head>
<body>
<header class="title navbar has-shadow is-justify-content-center has-background-primary">Inloggningsapplikation</header>
<div class="m-3">
<h1>Du är inloggad!</h1>
<form action="logout.php" method="post">
<input class="mt-2" type="submit" name="Logout" id="logout" value="Logga ut"></input>
</form>
</div>
</body>
</html>