View sourcecode

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

index.php

30 lines UTF-8 Unix (LF)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?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>