mirror of
https://github.com/ets-cfuhrman-pfe/EvalueTonSavoir.git
synced 2025-08-11 21:23:54 -04:00
95 lines
2.5 KiB
TypeScript
95 lines
2.5 KiB
TypeScript
|
|
import { useNavigate, Link } from 'react-router-dom';
|
||
|
|
|
||
|
|
// JoinRoom.tsx
|
||
|
|
import React, { useEffect, useState } from 'react';
|
||
|
|
|
||
|
|
import './Login.css';
|
||
|
|
import { TextField } from '@mui/material';
|
||
|
|
import LoadingButton from '@mui/lab/LoadingButton';
|
||
|
|
|
||
|
|
import LoginContainer from '../../../components/LoginContainer/LoginContainer'
|
||
|
|
import ApiService from '../../../services/ApiService';
|
||
|
|
|
||
|
|
const Login: React.FC = () => {
|
||
|
|
const navigate = useNavigate();
|
||
|
|
|
||
|
|
const [email, setEmail] = useState('');
|
||
|
|
const [password, setPassword] = useState('');
|
||
|
|
|
||
|
|
const [connectionError, setConnectionError] = useState<string>('');
|
||
|
|
const [isConnecting] = useState<boolean>(false);
|
||
|
|
|
||
|
|
useEffect(() => {
|
||
|
|
return () => {
|
||
|
|
|
||
|
|
};
|
||
|
|
}, []);
|
||
|
|
|
||
|
|
const login = async () => {
|
||
|
|
const result = await ApiService.login(email, password);
|
||
|
|
|
||
|
|
if (result != true) {
|
||
|
|
setConnectionError(result);
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
else {
|
||
|
|
navigate("/teacher/Dashboard")
|
||
|
|
}
|
||
|
|
|
||
|
|
};
|
||
|
|
|
||
|
|
|
||
|
|
return (
|
||
|
|
<LoginContainer
|
||
|
|
title='Login'
|
||
|
|
error={connectionError}>
|
||
|
|
|
||
|
|
<TextField
|
||
|
|
label="Email"
|
||
|
|
variant="outlined"
|
||
|
|
value={email}
|
||
|
|
onChange={(e) => setEmail(e.target.value)}
|
||
|
|
placeholder="Nom d'utilisateur"
|
||
|
|
sx={{ marginBottom: '1rem' }}
|
||
|
|
fullWidth
|
||
|
|
/>
|
||
|
|
|
||
|
|
<TextField
|
||
|
|
label="Mot de passe"
|
||
|
|
variant="outlined"
|
||
|
|
type="password"
|
||
|
|
value={password}
|
||
|
|
onChange={(e) => setPassword(e.target.value)}
|
||
|
|
placeholder="Nom de la salle"
|
||
|
|
sx={{ marginBottom: '1rem' }}
|
||
|
|
fullWidth
|
||
|
|
/>
|
||
|
|
|
||
|
|
<LoadingButton
|
||
|
|
loading={isConnecting}
|
||
|
|
onClick={login}
|
||
|
|
variant="contained"
|
||
|
|
sx={{ marginBottom: `${connectionError && '2rem'}` }}
|
||
|
|
disabled={!email || !password}
|
||
|
|
>
|
||
|
|
Login
|
||
|
|
</LoadingButton>
|
||
|
|
|
||
|
|
<div className="login-links">
|
||
|
|
|
||
|
|
<Link to="/teacher/resetPassword">
|
||
|
|
Réinitialiser le mot de passe
|
||
|
|
</Link>
|
||
|
|
|
||
|
|
<Link to="/teacher/register">
|
||
|
|
Créer un compte
|
||
|
|
</Link>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</LoginContainer>
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
export default Login;
|