feat: Ajout d'une animation de connexion avec spinner et feedback visuel
- Modal de progression pendant l'authentification SignalR - Messages dynamiques selon le contexte (connexion normale ou forcée) - Design cohérent avec la modal de déconnexion - Transitions fluides entre les étapes du processus - Amélioration de l'expérience utilisateur avec feedback continu
This commit is contained in:
@@ -875,6 +875,46 @@ body {
|
||||
to { opacity: 1; }
|
||||
}
|
||||
|
||||
/* Modal de progression de connexion */
|
||||
.login-progress-modal {
|
||||
background: white;
|
||||
padding: 50px;
|
||||
border-radius: 16px;
|
||||
text-align: center;
|
||||
max-width: 400px;
|
||||
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
|
||||
animation: scaleIn 0.3s ease-out;
|
||||
}
|
||||
|
||||
.login-spinner {
|
||||
margin: 0 auto 30px;
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.login-progress-modal h2 {
|
||||
margin: 0 0 15px 0;
|
||||
color: #333;
|
||||
font-size: 28px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.login-progress-modal p {
|
||||
margin: 0 0 10px 0;
|
||||
color: #555;
|
||||
font-size: 16px;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.login-modal-subtitle {
|
||||
color: #999 !important;
|
||||
font-size: 14px !important;
|
||||
margin-bottom: 0 !important;
|
||||
}
|
||||
|
||||
.modal-content {
|
||||
background-color: white;
|
||||
margin: 10% auto;
|
||||
|
||||
Reference in New Issue
Block a user