Mihao

wypozycz.php

May 21st, 2020
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.55 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="pl">
  3. <head>
  4. <title>Bibloteka </title>
  5. <meta charset="utf-8" />
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  7. <meta name="viewport" content="width=device-width, initial-scale=1" />
  8.  
  9. <link
  10. rel="stylesheet"
  11. href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
  12. integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
  13. crossorigin="anonymous"
  14. />
  15. <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.0/css/all.css" integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ" crossorigin="anonymous">
  16.  
  17. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css">
  18. <link rel="stylesheet" href="/style.css" />
  19.  
  20. <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
  21. <script src="jquery.scrollTo.min.js"></script>
  22. </head>
  23.  
  24. <body>
  25.  
  26. <?php
  27.  
  28. session_start();
  29.  
  30. if (!isset($_SESSION['zalogowany']))
  31. {
  32. header('Location: index.php');
  33. exit();
  34. }
  35.  
  36. ?>
  37.  
  38. <div class="container">
  39.  
  40. <div class="row">
  41. <div class="col-md-12 text-right" style="display: inline-block; margin-top: 30px;">
  42. <!-- Tutaj bedzie coś do edycji -->
  43. <div style="display: inline-block; margin-right: 30px;"> <h6>Zalogowany użytkownik: <?php ?> </h6></div>
  44. <!-- Koniec tutaj bedzie coś do edycji -->
  45. <div style="display: inline-block;"> <a href="wyloguj.php"><h6>Wyloguj się</h6></a></div>
  46. </div>
  47. </div>
  48.  
  49. <div class="row">
  50. <div class="col-md-3">
  51. <h3 style="margin-bottom: 25px;"> Menu </h3>
  52. <a href="wypozyczoneksiazki.php"><button type="button" style="width: 100%; margin-bottom: 10px;" class="btn btn-light">Wypożyczone Ksiązki</button></a>
  53. <a href="dostepneksiazki.php"><button type="button" style="width: 100%; margin-bottom: 10px;" class="btn btn-light">Dostępne Książki</button></a>
  54. <a href="usunuzytkownikaView.php"><button type="button" style="width: 100%; margin-bottom: 10px;" class="btn btn-light">Usuń użytkownika</button></a>
  55. <a href="dodajksiazkeFrom.php"><button type="button" style="width: 100%; margin-bottom: 10px;" class="btn btn-light">Dodaj Książkę</button></a>
  56. </div>
  57.  
  58.  
  59. <div class="col-md-9 text-center">
  60.  
  61. <div class="row">
  62. <h1 style="margin-top: 10%;"> Książka została wypożyczona</h1>
  63. </div>
  64. <div class="row">
  65.  
  66. <?php
  67.  
  68.  
  69.  
  70. ?>
  71.  
  72. </div>
  73. </div>
  74.  
  75. </div>
  76.  
  77.  
  78. </div>
  79.  
  80.  
  81. </body>
  82. </html>
Add Comment
Please, Sign In to add comment