production/Vue/Paramhabilitation/index.php
2025-12-01 16:12:12 +00:00

62 lines
1.2 KiB
PHP
Executable File

<?php $this->titre = "INTER SANTE - Habilitations"; ?>
<legend> <?= _("GESTION DES HABILITATIONS") ?> </legend>
<style>
.card {
background: white;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
margin: 10px;
padding: 15px;
transition: transform 0.2s;
}
.card:hover {
transform: scale(1.02);
background-color: #dcdcdc;
}
.card-content {
display: flex;
justify-content: space-between;
align-items: center;
}
.text {
flex: 1;
margin-left: 10px;
font-size: 13pt;
}
.card a {
text-decoration: none;
color: black;
width: 100%;
}
.card a:hover {
color: #007bff; /* Couleur au survol */
}
</style>
<div class="card">
<a href="Paramhabilitationass/">
<div class="card-content">
<i class="fas fa-users"></i>
<span class="text"> <?= _("Profils & droits utilisateurs") ?> </span>
<i class="fas fa-chevron-right"></i>
</div>
</a>
</div>
<div class="card">
<a href="Filtreadresseipcons/">
<div class="card-content">
<i class="fas fa-globe"></i>
<span class="text"> <?= _("Filtrage par adresse IP") ?> </span>
<i class="fas fa-chevron-right"></i>
</div>
</a>
</div>