Mihao

index php

May 20th, 2020
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.69 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="pl">
  3. <head>
  4. <title>Moja miejscowość-Stary Sącz</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. <div style="width: 400px; margin: auto; margin-top: 15%;">
  27. <h1 class="text-center" style="margin-bottom: 30px;"> Logowanie do biblioteki</h1>
  28. <!-- ############################################ -->
  29. <!-- Początek edycji kodu PHP -->
  30. <!-- ############################################ -->
  31.  
  32. <div class="alert alert-danger text-center" role="alert">
  33. Ups... Hasło lub login jest niepoprawne
  34. </div>
  35. <div class="alert alert-info text-center" role="alert">
  36. Użytkownik został poprawnie wylogowany
  37. </div>
  38. <div class="alert alert-success text-center" role="alert">
  39. Użytkownik został poprawnie dodany
  40. </div>
  41.  
  42. <!-- ############################################ -->
  43. <!-- KONIEC EDYCJI KODU PHP-->
  44. <!-- ############################################ -->
  45.  
  46. <form action="login.php" method="POST">
  47.  
  48. <div class="form-group col-md-12">
  49. <label for="inputLogin">Login:</label>
  50. <input type="text" name="login" class="form-control" id="inputCity" placeholder="Wpisz nazwę użytkownika...">
  51. </div>
  52.  
  53. <div class="form-group col-md-12">
  54. <label for="inputPassword">Hasło:</label>
  55. <input type="password" name="password" class="form-control" placeholder="Wpisz hasło..." id="inputCity">
  56. </div>
  57.  
  58. <div class="col-md-12 text-center">
  59. <button type="submit" style="width: 100%; margin-top: 30px;" class="btn btn-primary">Zaloguj</button>
  60. </div>
  61. </form>
  62.  
  63. <div class="col-md-12 text-center">
  64. <a href="zarejestrujForm.php">
  65. <button type="button" style="margin-top: 15px;" class="btn btn-link">Nie masz jeszcze konta? Zarajestruj się! </button>
  66. </a>
  67. </div>
  68.  
  69. </div>
  70.  
  71. <?php
  72.  
  73.  
  74.  
  75.  
  76. ?>
  77.  
  78.  
  79. </body>
  80. </html>
Add Comment
Please, Sign In to add comment