-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDialogMessage.php
19 lines (19 loc) · 1.01 KB
/
DialogMessage.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php include 'back/MessageProcess.php'; ?>
<div class="modal fade" id="DialogMessage" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title font-weight-bold" id="exampleModalLongTitle"><?php echo $Title ?></h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true" style="font-size: 30px;">×</span>
</button>
</div>
<div class="modal-body">
<p class="text-left font-weight-bold" style="font-size: 20px;"><?php echo $Message ?></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary font-weight-bold pr-4 pl-4" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>