diff options
author | lonkaars <loek@pipeframe.xyz> | 2023-05-08 18:35:39 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2023-05-08 18:35:39 +0200 |
commit | 770658c8434d7b7c0e716b7e375c733e79dc4a88 (patch) | |
tree | 5c1b48cfd9fd5748f0cb7d95051b396e15867fb5 /public/login.php | |
parent | f3b582307cc3caf5ee0c7514d461e47fb5893bc7 (diff) |
more website
Diffstat (limited to 'public/login.php')
-rw-r--r-- | public/login.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/public/login.php b/public/login.php index 22ac164..a8a1021 100644 --- a/public/login.php +++ b/public/login.php @@ -1,6 +1,6 @@ <!DOCTYPE html> <?php include "../lib/login.php" ?> -<?php // if_logged_in(true, "/") ?> +<?php if_logged_in(true, "/") ?> <?php do { if ($_SERVER['REQUEST_METHOD'] !== 'POST') break; @@ -26,10 +26,10 @@ do { <div class="modal"> <form action="/login.php" method="post"> <label for="username">Gebruikersnaam</label> - <input id="username" name="username" type="text" placeholder="gebruikersnaam"> + <input id="username" name="username" type="text" placeholder="gebruikersnaam" class="buttonstyle"> <label for="password">Wachtwoord</label> - <input id="password" name="password" type="password" placeholder="wachtwoord"> - <input type="submit" value="Inloggen"> + <input id="password" name="password" type="password" placeholder="wachtwoord" class="buttonstyle"> + <input type="submit" value="Inloggen" class="button filled"> </form> <span class="register">Of <a href="/register.php">een nieuw account maken</a></span> </div> |