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.
39 lines
1.1 KiB
39 lines
1.1 KiB
<?php
|
|
session_start();
|
|
include("init.php");
|
|
$ptitle = "Login";
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Login</title>
|
|
<link rel="stylesheet" href="css/bootstrap.css">
|
|
</head>
|
|
<body class="d-flex flex-column min-vh-100">
|
|
<div class="container">
|
|
<?php
|
|
include "menu.php";
|
|
?>
|
|
<form action="action_login.php" method="post" class="form">
|
|
<label for="username" class="form-label">Uživatelské jméno</label>
|
|
<br>
|
|
<input type="text" name="username" id="username" class="form-control">
|
|
<br>
|
|
<label for="pw" class="form-label">Heslo</label>
|
|
<br>
|
|
<input type="password" name="pw" id="pw" class="form-control">
|
|
<br>
|
|
<input type="submit" value="Login" class="btn btn-primary">
|
|
</form>
|
|
</div>
|
|
|
|
<?php
|
|
include "footer.php";
|
|
?>
|
|
<script src="js/bootstrap.bundle.js"></script>
|
|
|
|
</body>
|
|
</html>
|