\n Remember your {credential}. Log In\n
\n);\n\nexport const ResendEmail = ({resend}: {resend: React.MouseEventHandler}) => {\n return (\n\n Didn't receive an email? Resend the email\n
\n );\n};\n","/* eslint-disable @typescript-eslint/no-use-before-define */\nimport React from 'react';\nimport {\n Button,\n ButtonWidth,\n} from '@practicegenius/pg-ui/src/base/Material/components/Button';\nimport {Modal} from '../../../components/Modal/Modal';\nimport {ModalButtons} from '../../../components/Modal/layout';\nimport {Content, Title} from '../../../shared/utils/sharedStyledElements';\n\nconst INVALID_TOKEN_REASONS = Object.freeze({\n INVALID: 'invalid',\n EXPIRED: 'expired',\n});\n\nexport type InvalidTokenReason =\n typeof INVALID_TOKEN_REASONS[keyof typeof INVALID_TOKEN_REASONS];\n\nconst titles: {\n [k in InvalidTokenReason]: string;\n} = {\n [INVALID_TOKEN_REASONS.INVALID]: 'Password Reset Link Invalid',\n [INVALID_TOKEN_REASONS.EXPIRED]: 'Password Reset Link Expired',\n};\n\nconst messages: {\n [k in InvalidTokenReason]: string;\n} = {\n [INVALID_TOKEN_REASONS.INVALID]:\n 'Your password reset link invalid. Please try again with a new link.',\n [INVALID_TOKEN_REASONS.EXPIRED]:\n 'Your password reset link expired. Please try again with a new link.',\n};\n\nexport function InvalidResetTokenModal({\n reason,\n open,\n close,\n}: {\n reason: InvalidTokenReason;\n open: boolean;\n close: () => unknown;\n}) {\n return (\nThe account associated with this email is not set up.
\nLet's finish registering so you can start earning rewards.
\nYou joined RewardsHub with {identifier}. Please use that to log in.
\n