The following files exists in this folder. Click to view.
admin.php22 lines ASCII Unix (LF)
<?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>