Mihao

komunikaty

May 20th, 2020
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. <!-- ############################################ -->
  2. <!-- Początek edycji kodu PHP -->
  3. <!-- ############################################ -->
  4.  
  5.  
  6. <?php
  7.  
  8. if( isset($_GET['blad']))
  9. {
  10. $blad = $_GET['blad'];
  11.  
  12. if($blad == true)
  13. {
  14. echo ' <div class="alert alert-danger text-center" role="alert">
  15. Ups... Hasło lub login jest niepoprawne
  16. </div>';
  17. }
  18. }
  19. if( isset($_GET['rejestracja']))
  20. {
  21. $rejestracja = $_GET['rejestracja'];
  22.  
  23. if($rejestracja == true)
  24. {
  25. echo '<div class="alert alert-success text-center" role="alert">
  26. Użytkownik został poprawnie dodany
  27. </div>';
  28. }
  29. }
  30. if( isset($_GET['wyloguj']))
  31. {
  32. $wyloguj = $_GET['wyloguj'];
  33.  
  34. if($wyloguj == true)
  35. {
  36. echo ' <div class="alert alert-info text-center" role="alert">
  37. Użytkownik został poprawnie wylogowany
  38. </div>';
  39. }
  40. }
  41.  
  42.  
  43. ?>
  44.  
  45. <!-- ############################################ -->
  46. <!-- KONIEC EDYCJI KODU PHP-->
  47. <!-- ############################################ -->
Add Comment
Please, Sign In to add comment