added orai

This commit is contained in:
szabomarton
2024-12-09 14:52:37 +01:00
parent 0158b59ccb
commit 8bfbb36fdf
4 changed files with 90 additions and 11 deletions

13
20241205/login.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
if ($_SESSION["islogin"] === false){
?>
<form action="#" method="POST">
<label for="email">Email: </label> <br>
<input type="email" name="lemail" required><br>
<button type="submit">Bejelentkezés</button>
</form>
<?php
}
?>