84 lines
2.0 KiB
PHP
84 lines
2.0 KiB
PHP
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
|
|
<style>
|
|
.pop-modal-style .modal-header {
|
|
background-color: #31c233;
|
|
|
|
}
|
|
.pop-modal-style .modal-title {
|
|
color: #fff;
|
|
}
|
|
|
|
.pop-modal-style button.btn-close {
|
|
background-color: #ddd !important;
|
|
border: 0px !important;
|
|
padding: 5px 10px !important;
|
|
border-radius: 3px !important;
|
|
height:unset !important;
|
|
line-height:unset !important;
|
|
font-size:16px;
|
|
}
|
|
.pop-modal-style button.btn-close:hover {
|
|
background-color: #b5b5b5 !important;
|
|
}
|
|
|
|
.pop-modal-style button.btn.btn-send{
|
|
background-color: #31c233 !important;
|
|
border: 0px !important;
|
|
color:#fff;
|
|
padding: 5px 10px !important;
|
|
border-radius: 3px !important;
|
|
height:unset !important;
|
|
line-height:unset !important;
|
|
font-size:16px;
|
|
}
|
|
.pop-modal-style button.btn.btn-send:hover{
|
|
background-color: #2BAA2E !important;
|
|
|
|
}
|
|
</style>
|
|
|
|
<body>
|
|
|
|
|
|
<script type='text/javascript'>
|
|
$(document).ready(function() {
|
|
$('#commonModal').modal({backdrop: 'static'});
|
|
$('#commonModal').modal('show');
|
|
//setTimeout(function(){$('#myModal').modal('hide')},3000);
|
|
});
|
|
</script>
|
|
|
|
|
|
<!-- Common Modal -->
|
|
<div class="modal fade pop-modal-style" id="commonModal" data-backdrop="static" role="dialog">
|
|
<div class="modal-dialog">
|
|
<!-- Modal content-->
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<!--button type="button" class="close" data-dismiss="modal">×</button-->
|
|
<h4 class="modal-title">MESSAGE</h4>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div>
|
|
<p class="modal-alert"><?=$lib_message?></p>
|
|
</div>
|
|
|
|
</div>
|
|
<div class="modal-footer"">
|
|
<button type="button" class="btn btn-modal-close" data-dismiss="modal" onClick="<?=$lib_link?>">Close</button>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|