bcom/includes/footer.php

31 lines
750 B
PHP

<footer>
<div id="copyright">
Touts droits r&eacute;serv&eacute;s (LOL)
</div>
<div id="nous_contacter">
Contacts :
<a href="mailto:bernard.lafayette63@gmail.com">bernard.lafayette63@gmail.com</a>
</div>
<a href="" id="haut_de_page">Haut de page</a>
</footer>
<?php if(isset($_SESSION['current_error'])){ ?>
<div id="currentErrorPanel" class="fullscreen big-background-semi-opaque full-text">
<div class="screen-vertical-centered">
<div class="screen-horizontal-centered opaque">
<?php echo $_SESSION['current_error'];?>
</div>
</div>
</div>
<script type="text/javascript">
$('#currentErrorPanel').click(function(){
$('#currentErrorPanel').fadeOut(600);
});
</script>
<?php unset($_SESSION['current_error']);
} ?>