Skip to content

Commit

Permalink
Issue #000 chore: Uncommeted forgot password logic
Browse files Browse the repository at this point in the history
  • Loading branch information
Rushikesh-Sonawane99 committed Jun 20, 2024
1 parent 95a2e4d commit 6700dd1
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions src/pages/login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import { useTranslation } from 'next-i18next';
import { telemetryFactory } from '@/utils/telemetry';
import { logEvent } from '@/utils/googleAnalytics';
import { showToastMessage } from '@/components/Toastify';
import Link from '@mui/material/Link';

const LoginPage = () => {
const { t } = useTranslation();
Expand Down Expand Up @@ -323,16 +324,16 @@ const LoginPage = () => {
</Box>

{
// <Box marginTop={'1rem'} marginLeft={'0.8rem'}>
// <Link
// sx={{ color: theme.palette.secondary.main }}
// href="https://qa.prathamteacherapp.tekdinext.com/auth/realms/pratham/login-actions/reset-credentials?client_id=security-admin-console&tab_id=rPJFHSFv50M"
// underline="none"
// onClick={handleForgotPasswordClick}
// >
// {t('LOGIN_PAGE.FORGOT_PASSWORD')}
// </Link>
// </Box>
<Box marginTop={'1rem'} marginLeft={'0.8rem'}>
<Link
sx={{ color: theme.palette.secondary.main }}
href="https://qa.prathamteacherapp.tekdinext.com/auth/realms/pratham/login-actions/reset-credentials?client_id=security-admin-console&tab_id=rPJFHSFv50M"
underline="none"
onClick={handleForgotPasswordClick}
>
{t('LOGIN_PAGE.FORGOT_PASSWORD')}
</Link>
</Box>
}
<Box marginTop={'1.2rem'} className="remember-me-checkbox">
<Checkbox
Expand Down

0 comments on commit 6700dd1

Please sign in to comment.