23 lines
676 B
PHP
23 lines
676 B
PHP
<?php
|
|
require_once __DIR__ . "/functions.php";
|
|
middlewareAuthorized();
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Photos</title>
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Welcome to our site</h1>
|
|
<div>
|
|
<a href="logout.php" class="btn btn-danger" role="button">Logout</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|