The following files exists in this folder. Click to view.
index.php30 lines UTF-8 Unix (LF)
<?php
$mess = "";
if(isset($_GET['mess'])){
$mess = "<p class='text-error'>" . htmlspecialchars($_GET['mess']) . "</p>";
}
?>
<!DOCTYPE html>
<html lang="sv">
<head>
<meta charset="UTF-8">
<title>Entry</title>
<style>
body {
display: grid;
place-items: center;
height: 100vh;
margin: 0;
}
</style>
</head>
<body>
<p>Inloggningsformulär</p>
<?php echo $mess;?>
<form method="POST" action="login.php">
<input type="text" required name="username" placeholder="Användarnamn"><br>
<input type="password"required name="password" placeholder="Lösenord"><br>
<input type ="checkbox" name="accept">Håll mig inloggad<br>
<input type="submit" name="Logga in">
</body>
</html>