-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmodal.php
33 lines (28 loc) · 819 Bytes
/
modal.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!-- The Modal -->
<div class="modal fade" id="myModal">
<div class="modal-dialog modal-fullscreen">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<h4 class="modal-title"><?=!empty($modal_title)?$modal_title:'Judul Modal' ?></h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<!-- Modal body -->
<div class="modal-body">
<?php include($form); ?>
</div>
<!-- Modal footer -->
<div class="modal-footer">
<button type="button" class="btn btn-danger" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<style type="text/css">
.modal-fullscreen {
min-width: 100%;
width: 100%;
/*margin: 20px;*/
margin-left:10px;
}
</style>