Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="pl">
- <head>
- <title>Bibloteka </title>
- <meta charset="utf-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
- <meta name="viewport" content="width=device-width, initial-scale=1" />
- <link
- rel="stylesheet"
- href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
- integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
- crossorigin="anonymous"
- />
- <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.0/css/all.css" integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ" crossorigin="anonymous">
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css">
- <link rel="stylesheet" href="/style.css" />
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
- <script src="jquery.scrollTo.min.js"></script>
- </head>
- <body>
- <?php
- session_start();
- if (!isset($_SESSION['zalogowany']))
- {
- header('Location: index.php');
- exit();
- }
- ?>
- <div class="container">
- <div class="row">
- <div class="col-md-12 text-right" style="display: inline-block; margin-top: 30px;">
- <!-- Tutaj bedzie coś do edycji -->
- <div style="display: inline-block; margin-right: 30px;"> <h6>Zalogowany użytkownik: <?php echo $_SESSION['login']; ?> </h6></div>
- <!-- Koniec tutaj bedzie coś do edycji -->
- <div style="display: inline-block;"> <a href="wyloguj.php"><h6>Wyloguj się</h6></a></div>
- </div>
- </div>
- <div class="row">
- <div class="col-md-3">
- <h3 style="margin-bottom: 25px;"> Menu </h3>
- <a href="wypozyczoneksiazki.php"><button type="button" style="width: 100%; margin-bottom: 10px;" class="btn btn-light">Wypożyczone Ksiązki</button></a>
- <a href="dostepneksiazki.php"><button type="button" style="width: 100%; margin-bottom: 10px;" class="btn btn-light">Dostępne Książki</button></a>
- <a href="usunuzytkownikaView.php"><button type="button" style="width: 100%; margin-bottom: 10px;" class="btn btn-light">Usuń użytkownika</button></a>
- <a href="dodajksiazkeFrom.php"><button type="button" style="width: 100%; margin-bottom: 10px;" class="btn btn-light">Dodaj Książkę</button></a>
- </div>
- <div class="col-md-9 text-center">
- <h1 style="margin-top: 10%;"> Witaj w bibliotece programisty!</h1>
- <h5>Co dzisiaj ciekawego wypożyczysz?</h5>
- </div>
- </div>
- </div>
- </body>
- </html>
Add Comment
Please, Sign In to add comment