22 lines
633 B
PHP
22 lines
633 B
PHP
<script type="text/javascript">
|
|
$(window).on('load', function() {
|
|
$('#myModal').modal('show');
|
|
});
|
|
</script>
|
|
|
|
<link rel="stylesheet" href="../css/visitation.css?v=1" />
|
|
<style>
|
|
body{
|
|
background: url('../images/company/<?= IMAGELOCATION ?>/visitation/background.jpg');
|
|
}
|
|
.modal-top{
|
|
background-image: url('../images/company/<?= IMAGELOCATION ?>/visitation/frame-top.png');
|
|
}
|
|
.modal-center{
|
|
background-image:url('../images/company/<?= IMAGELOCATION ?>/visitation/frame-center.png');
|
|
}
|
|
.modal-bottom{
|
|
background-image:url('../images/company/<?= IMAGELOCATION ?>/visitation/frame-bottom.png');
|
|
}
|
|
</style>
|