13 lines
260 B
PHP
13 lines
260 B
PHP
<?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
|
|
}
|
|
?>
|