import { Button, Typography } from '@material-ui/core'; import { Link } from 'react-router-dom'; import { INVALID_TOKEN_BUTTON } from 'testIds'; import { useCommonStyles } from 'common.styles'; import classnames from 'classnames'; const InvalidToken = () => { const commonStyles = useCommonStyles(); return (
Invalid token Your token has either been used to reset your password, or it has expired. Please request a new reset password URL in order to reset your password.
); }; export default InvalidToken;