29 lines
935 B
HTML
29 lines
935 B
HTML
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
|
|
xmlns:h="http://xmlns.jcp.org/jsf/html"
|
|
xmlns:f="http://xmlns.jcp.org/jsf/core"
|
|
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
|
|
xmlns:p="http://primefaces.org/ui">
|
|
|
|
<!--
|
|
Composant réutilisable: Footer (WOU/DRY Pattern)
|
|
|
|
Auteur: Lions User Manager
|
|
Version: 1.0.0
|
|
Description: Pied de page avec informations
|
|
-->
|
|
|
|
<div class="layout-footer">
|
|
<div class="grid">
|
|
<div class="col-12">
|
|
<div class="footer-bottom text-center">
|
|
<h4>Lions User Manager</h4>
|
|
<h6>Copyright © Lions Dev Team - Gestion centralisée des utilisateurs Keycloak</h6>
|
|
<p class="text-600 text-sm mt-2">Version 1.0.0</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</ui:composition>
|
|
|