Merge pull request #180 from ets-cfuhrman-pfe/JubaAzul/issue179
Some checks are pending
CI/CD Pipeline for Backend / build_and_push_backend (push) Waiting to run
CI/CD Pipeline for Nginx Router / build_and_push_nginx (push) Waiting to run
CI/CD Pipeline for Frontend / build_and_push_frontend (push) Waiting to run
Tests / tests (client) (push) Waiting to run
Tests / tests (server) (push) Waiting to run

Login affiche "Nom de la salle" plutôt que "Mot de passe" et "Nom d'utilisateur" au lieu d' "Adresse courriel"
This commit is contained in:
Christopher (Cris) Fuhrman 2025-01-10 13:39:44 -05:00 committed by GitHub
commit 0a7f507a47
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -49,7 +49,7 @@ const Login: React.FC = () => {
variant="outlined"
value={email}
onChange={(e) => setEmail(e.target.value)}
placeholder="Nom d'utilisateur"
placeholder="Adresse courriel"
sx={{ marginBottom: '1rem' }}
fullWidth
/>
@ -60,7 +60,7 @@ const Login: React.FC = () => {
type="password"
value={password}
onChange={(e) => setPassword(e.target.value)}
placeholder="Nom de la salle"
placeholder="Mot de passe"
sx={{ marginBottom: '1rem' }}
fullWidth
/>