Blob: kirjautuminen.php
Blob id: e6298d86b73730299624de1ae3641113a802c52f
Size: 953 B
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 | <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Kirjaudu</title> <link rel="stylesheet" type="text/css" href="../css/style.css"> </head> <body> <?php include "../src/header.php" ?> <main> <section> <form action="../src/kirjaudu.php" method="POST"> <fieldset> <legend>Kirjaudu sisään</legend> <label for="nimi">Nimi:</label> <input type="text" id="nimi" name="nimi"> <label for="salasana">Salasana:</label> <input type="password" id="salasana" name="salasana"> <button type="submit" name="submit"> Kirjaudu </button> </fieldset> </form> </section> </main> <?php include "../src/footer.php"; ?> </body> </html> |