Advertisement
Guest User

Untitled

a guest
Feb 19th, 2020
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <div class="container">
  2. <div style="text-align: center;">
  3. <?php if (!empty($_SESSION['error'])): ?>
  4. <div style="background-color: red;padding: 5px;margin: 15px"><?= $_SESSION['error'] ?></div>
  5. <?php unset($_SESSION['error']) ?>
  6. <?php endif; ?>
  7. </div>
  8.  
  9. <div style="text-align: center;">
  10. <?php if (!empty($_SESSION['message'])): ?>
  11. <div style="background-color: greenyellow;padding: 5px;margin: 15px"><?= $_SESSION['message'] ?></div>
  12. <?php unset($_SESSION['message']) ?>
  13. <?php endif; ?>
  14. </div>
  15. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement