Advertisement
Guest User

Untitled

a guest
Aug 25th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <!-- Latest compiled and minified CSS -->
  5. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
  6.  
  7. <script src="http://code.jquery.com/jquery-3.1.0.min.js" integrity="sha256-cCueBR6CsyA4/9szpPfrX3s49M9vUU5BgtiJj06wt/s=" crossorigin="anonymous"></script>
  8.  
  9.  
  10. <!-- Latest compiled and minified JavaScript -->
  11. <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
  12. </head>
  13. <body>
  14.  
  15.  
  16. <!-- Button trigger modal -->
  17. <button type="button" class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">
  18. Launch demo modal
  19. </button>
  20.  
  21. <!-- Modal -->
  22. <div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
  23. <div class="modal-dialog" role="document">
  24. <div class="modal-content">
  25. <div class="modal-header">
  26. <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
  27. <h4 class="modal-title" id="myModalLabel">Modal title</h4>
  28. </div>
  29. <div class="modal-body">
  30. ...
  31. </div>
  32. <div class="modal-footer">
  33. <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
  34. <button type="button" class="btn btn-primary">Save changes</button>
  35. </div>
  36. </div>
  37. </div>
  38. </div>
  39.  
  40. <?php if (!empty($_GET['errors'])): ?>
  41. <script>
  42. $("#myModal").modal('show');
  43. </script>
  44. <?php endif; ?>
  45.  
  46.  
  47.  
  48. </body>
  49. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement