You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.php 1.1KB

1234567891011121314151617181920212223242526272829303132
  1. <html>
  2. <?php
  3. session_start();
  4. unset($_SESSION['game']);
  5. require_once "dbase.inc";
  6. require_once "login.inc";
  7. $loginInfo = loginUser();
  8. ?>
  9. <head>
  10. <link rel="stylesheet" href="style.css">
  11. </head>
  12. <body class="loginform">
  13. <main class="loginmain">
  14. <h1>Play battleship</h1>
  15. <form action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]); ?>" method="POST" class="loginform__input">
  16. <label for="login" class="loginform__input__items">Login: </label>
  17. <input type="text" id="login" name="login" class="loginform__input__items loginform__input__items--height" required>
  18. <label for="password" class="loginform__input__items">Password: </label>
  19. <input type="password" id="password" name="password" class="loginform__input__items loginform__input__items--height" required>
  20. <input type="submit" class="loginform__input__items loginform__input__items--height " value="submit">
  21. <?= $loginInfo ?>
  22. </form>
  23. <a href="register.php">Nog geen account? Registreer je hier!</a>
  24. </main>
  25. </body>
  26. </html>