production/Vue/Diverstests/index.php
2025-12-02 11:29:44 +00:00

63 lines
1.2 KiB
PHP
Executable File

<?php $this->titre = "INTER SANTE - Divers tests"; ?>
<legend> <?= _("OUTILS DE TESTS") ?> </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: #0078d4; /* Couleur au survol */
}
</style>
<div class="card">
<a href="Testerpaiementmobile/">
<div class="card-content">
<i class="fas fa-sign-out"></i>
<span class="text"> <?= _("Tester Paiement Mobile") ?> </span>
<i class="fas fa-chevron-right"></i>
</div>
</a>
</div>
<div class="card">
<a href="Testerreconnaissancefaciale/">
<div class="card-content">
<i class="fas fa-eye"></i>
<span class="text"> <?= _("Tester Reconnaissance Faciale") ?> </span>
<i class="fas fa-chevron-right"></i>
</div>
</a>
</div>