Blob: register.php
Blob id: 5056d32f4ecc3e78facef0432a69789408577cb7
Size: 1.1 KB
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 31 | <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Rekisteröidy</title> <link rel="stylesheet" type="text/css" href="../css/style.css"> </head> <body> <?php include "../src/header.php" ?> <main> <section> <form action="../src/logic.register.php" method="POST"> <fieldset> <legend>Luo Käyttäjä</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"> <label for="salasana">Vahvista salasana:</label> <input type="password" id="vsalasana" name="vsalasana"> <button type="submit" name="submit"> Luo käyttäjä </button> </fieldset> </form> </section> </main> <?php include "../src/footer.php"; ?> </body> </html> |