Advertisement
DataCCIW

My College Church Site Notification

Jul 19th, 2022 (edited)
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. <!-- Site Notification -->
  2. <!-- Modal -->
  3. <div class="modal" id="CCIWModal" role="dialog">
  4. <div class="modal-dialog">
  5.  
  6. <!-- Modal content-->
  7. <div class="modal-content">
  8. <div class="modal-header">
  9. <h3 class="modal-title" style="color:black">Planned Maintenance Starting Shortly</h3>
  10. </div>
  11. <div class="modal-body">
  12. <p>The My College Church website used for giving and event registration will go offline at 5:15 p.m. CST tonight as we perform some server updates. <br><br>If possible, please complete any in progress event registrations or online gifts before then. <br><br>Our main site <a href="https://www.college-church.org/"> https://www.college-church.org </a> will continue to stay online during this time. We estimate the maintenance will take about 30 minutes. Thank you for your patience.</p>
  13. </div>
  14. <div class="modal-footer">
  15. <button type="button" class="btn btn-default" data-dismiss="modal">Dismiss Notification</button>
  16. </div>
  17. </div>
  18.  
  19. </div>
  20. </div>
  21.  
  22.  
  23. <script>
  24. $(document).ready(function() {
  25.  
  26. var storageItemID = 'update1-23-23';
  27.  
  28. if(localStorage.getItem(storageItemID) != 'true'){
  29. $("#CCIWModal").modal();
  30. }
  31.  
  32. $('#CCIWModal button').click(function(e) // if the close or dismiss button are clicked
  33. {
  34. localStorage.setItem(storageItemID ,'true')
  35. });
  36. });
  37. </script>
  38.  
  39. <style>
  40. #CCIWModal
  41. {
  42. z-index: 1050;
  43. }
  44. </style>
  45.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement