The following files exists in this folder. Click to view.
index.php26 lines UTF-8 Unix (LF)
<!DOCTYPE html>
<html lang="sv">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Inloggningsapplikation</title>
</head>
<body>
<h1>Inloggningsapplikationen</h1>
<form method="post" action="login.php">
<p>Användarnamn<br>
<input type='text' name='username' required>
</p>
<p>Lösenord<br>
<input type='password' name='password' required>
</p>
<p><input type="checkbox"
name="keepLoggedIn"> Håll mig inloggad</p>
<p><input type="submit" value="Logga in">
</p>
</form>
</body>
</html>