This commit is contained in:
szabomarton
2024-09-16 14:34:11 +02:00
commit dc5ff7ddad
12 changed files with 268 additions and 0 deletions

24
20240916/index.php Normal file
View File

@@ -0,0 +1,24 @@
<?php require_once 'negy.php'; ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alap web valami</title>
</head>
<body>
<h1>
POST használata
</h1>
<?php
if ($islogin == false){
require 'loginform.php';
} else {
require 'logged.php';
}
?>
<?php require_once 'footer.php'; ?>
</body>
</html>