You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
674 B
32 lines
674 B
<?php
|
|
session_start();
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Přihlášení</title>
|
|
</head>
|
|
<body>
|
|
|
|
<?php
|
|
|
|
if (isset($_SESSION["login"])) {
|
|
if (strlen($_SESSION["login"]) > 0) {
|
|
echo "Jste přihlášen jako: " . $_SESSION["login"];
|
|
} else {
|
|
echo "Nejste přihlášen";
|
|
}
|
|
}
|
|
|
|
?>
|
|
|
|
<form name="login" action="/login.php" method="post">
|
|
<input type="text" name="login" placeholder="Login">
|
|
<input type="password" name="password" placeholder="Heslo">
|
|
<button type="submit">Přihlásit</button>
|
|
</form>
|
|
|
|
</body>
|
|
</html>
|