-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
94 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<div class="modal fade" tabindex="-1" data-bs-backdrop="static" data-bs-keyboard="false" role="dialog" | ||
aria-labelledby="News" aria-hidden="true" id="news-popup-modal"> | ||
<div class="modal-dialog modal-lg"> | ||
<div class="modal-content p-4"> | ||
<div class="modal-header"> | ||
<i class="bi bi-megaphone-fill me-3"></i> | ||
<h1 class="modal-title fs-5"> | ||
Some updates from the MaMpf team | ||
</h1> | ||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"> | ||
</button> | ||
</div> | ||
|
||
<div class="modal-body" id="news-popup-body"> | ||
<!-- HTML content populated based on currently activated news popups --> | ||
</div> | ||
|
||
<div class="modal-footer"> | ||
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Show again later</button> | ||
<button type="button" class="btn btn-primary" data-bs-dismiss="modal">Don't show again</button> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |