Can reset password

This commit is contained in:
2023-06-12 19:10:31 +02:00
parent 1bd18133b3
commit e5827656fa
6 changed files with 221 additions and 13 deletions

View File

@ -0,0 +1,13 @@
import { Button } from "@mui/material";
import { Link } from "react-router-dom";
export function AuthSingleMessage(p: { message: string }): React.ReactElement {
return (
<>
<p style={{ textAlign: "center" }}>{p.message}</p>
<Link to={"/"}>
<Button>Retour à l'accueil</Button>
</Link>
</>
);
}