11modal-content.html 626 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>Model remote content</title>
  5. <meta charset="utf-8"/>
  6. </head>
  7. <body>
  8. <!-- Modal header -->
  9. <div class="modal-header">
  10. <button type="button" class="close" data-dismiss="modal">&times;</button>
  11. <h4 class="modal-title">2 Welcome back!</h4>
  12. </div>
  13. <!-- Modal body -->
  14. <div class="modal-body">
  15. <h1>2 Hello readers!</h1>
  16. </div>
  17. <!-- Modal footer -->
  18. <div class="modal-footer">
  19. <button type="button" class="btn btn-default" data-dismiss="modal">2 Close</button>
  20. <button type="button" class="btn btn-primary" data-dismiss="modal">2 Save</button>
  21. </div>
  22. </body>
  23. </html>