diff --git a/src/components/client/one-time-donation/LoginForm.tsx b/src/components/client/one-time-donation/LoginForm.tsx
index 1e7f1c65b..9ddb75e7b 100644
--- a/src/components/client/one-time-donation/LoginForm.tsx
+++ b/src/components/client/one-time-donation/LoginForm.tsx
@@ -1,15 +1,19 @@
import React, { useContext, useState } from 'react'
import { useTranslation } from 'next-i18next'
+import { signIn } from 'next-auth/react'
+import { OneTimeDonation } from 'gql/donations'
import { useFormikContext } from 'formik'
+
import { Box, Button, CircularProgress, Grid, Typography } from '@mui/material'
+
import theme from 'common/theme'
import Google from 'common/icons/Google'
-import { OneTimeDonation } from 'gql/donations'
+import { routes } from 'common/routes'
import EmailField from 'components/common/form/EmailField'
-import { signIn } from 'next-auth/react'
+import PasswordField from 'components/common/form/PasswordField'
+import LinkButton from 'components/common/LinkButton'
import { StepsContext } from './helpers/stepperContext'
import { AlertStore } from 'stores/AlertStore'
-import PasswordField from 'components/common/form/PasswordField'
const onGoogleLogin = () => signIn('google')
@@ -62,6 +66,11 @@ function LoginForm() {
size="medium"
/>
+
+
+ {t('auth:account.forgotten-password')}
+
+