-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodal.html
More file actions
23 lines (23 loc) · 1.01 KB
/
modal.html
File metadata and controls
23 lines (23 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
</html>
<!-- Modal Template -->
<div class="modal hide fade" id="Modal" tabindex="-1" role="dialog" >
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content text-center">
<div class="modal-header">
<h5 class="modal-title" id="modalTitle">Welcome to Micronesia News and Forum!</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div id="modalBody" class="modal-body">
Thank you for creating a new account! We hope you continue to use the site and partake in creating discussion posts and viewing the
Micronesia news relevant to you!
</div>
<div id="modalFooter" class="modal-footer" style="margin:auto">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<!-- <button type="button" class="btn btn-primary">Save changes</button>-->
</div>
</div>
</div>
</div>
</html>