View sourcecode

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

index.php

26 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

<!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>