added doga
This commit is contained in:
29
20241021/index.php
Normal file
29
20241021/index.php
Normal file
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
session_start();
|
||||
if (isset($_POST["logout"]) && $_POST["logout"] == 1){
|
||||
unset($_SESSION["username"]);
|
||||
unset($_SESSION["password"]);
|
||||
|
||||
session_destroy();
|
||||
$_POST["logout"] = 0;
|
||||
} else if (isset($_SESSION["username"]) && isset($_SESSION["password"])){
|
||||
header("Location: main.php");
|
||||
}
|
||||
|
||||
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Document</title>
|
||||
</head>
|
||||
<body>
|
||||
<form action="termekek.php" method="POST">
|
||||
Név: <input type="text" name="username"> <br>
|
||||
Jelszó: <input type="password" name="password"> <br>
|
||||
<button type="submit">Bejelentkezés</button>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user