Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!-- ############################################ -->
- <!-- Początek edycji kodu PHP -->
- <!-- ############################################ -->
- <?php
- if( isset($_GET['blad']))
- {
- $blad = $_GET['blad'];
- if($blad == true)
- {
- echo ' <div class="alert alert-danger text-center" role="alert">
- Ups... Hasło lub login jest niepoprawne
- </div>';
- }
- }
- if( isset($_GET['rejestracja']))
- {
- $rejestracja = $_GET['rejestracja'];
- if($rejestracja == true)
- {
- echo '<div class="alert alert-success text-center" role="alert">
- Użytkownik został poprawnie dodany
- </div>';
- }
- }
- if( isset($_GET['wyloguj']))
- {
- $wyloguj = $_GET['wyloguj'];
- if($wyloguj == true)
- {
- echo ' <div class="alert alert-info text-center" role="alert">
- Użytkownik został poprawnie wylogowany
- </div>';
- }
- }
- ?>
- <!-- ############################################ -->
- <!-- KONIEC EDYCJI KODU PHP-->
- <!-- ############################################ -->
Add Comment
Please, Sign In to add comment