The following files exists in this folder. Click to view.
admin.php21 lines UTF-8 Unix (LF)
<?php
include("check_login.php");
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Admin</title>
</head>
<body>
<h2>Välkommen till adminsidna!</h2>
<p>Du är inloggad som: <?php echo $_SESSION['user']; ?></p>
<a href="logout.php">Logga ut</a>
</body>
</html>