mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
80 lines
2.7 KiB
TypeScript
80 lines
2.7 KiB
TypeScript
import { t, Trans } from "@lingui/macro"
|
|
import { Anchor, Box, Button, Center, Container, Group, Paper, Stack, TextInput, Title } from "@mantine/core"
|
|
import { useForm } from "@mantine/form"
|
|
import { client, errorToStrings } from "app/client"
|
|
import { PasswordResetRequest } from "app/types"
|
|
import { Alert } from "components/Alert"
|
|
import { PageTitle } from "pages/PageTitle"
|
|
import { useState } from "react"
|
|
import { useAsyncCallback } from "react-async-hook"
|
|
import { Link } from "react-router-dom"
|
|
|
|
export function PasswordRecoveryPage() {
|
|
const [message, setMessage] = useState("")
|
|
|
|
const form = useForm<PasswordResetRequest>({
|
|
initialValues: {
|
|
email: "",
|
|
},
|
|
})
|
|
|
|
const recoverPassword = useAsyncCallback(client.user.passwordReset, {
|
|
onSuccess: () => {
|
|
setMessage(t`An email has been sent if this address was registered. Check your inbox.`)
|
|
},
|
|
})
|
|
|
|
return (
|
|
<Container size="xs">
|
|
<PageTitle />
|
|
<Paper>
|
|
<Title order={2} mb="md">
|
|
<Trans>Password Recovery</Trans>
|
|
</Title>
|
|
|
|
{recoverPassword.error && (
|
|
<Box mb="md">
|
|
<Alert messages={errorToStrings(recoverPassword.error)} />
|
|
</Box>
|
|
)}
|
|
|
|
{message && (
|
|
<Box mb="md">
|
|
<Alert level="success" messages={[message]} />
|
|
</Box>
|
|
)}
|
|
|
|
<form
|
|
onSubmit={form.onSubmit(req => {
|
|
setMessage("")
|
|
recoverPassword.execute(req)
|
|
})}
|
|
>
|
|
<Stack>
|
|
<TextInput
|
|
type="email"
|
|
label={<Trans>E-mail</Trans>}
|
|
placeholder={t`E-mail`}
|
|
{...form.getInputProps("email")}
|
|
size="md"
|
|
required
|
|
/>
|
|
|
|
<Button type="submit" loading={recoverPassword.loading}>
|
|
<Trans>Recover password</Trans>
|
|
</Button>
|
|
|
|
<Center>
|
|
<Group>
|
|
<Anchor component={Link} to="/login">
|
|
<Trans>Back to log in</Trans>
|
|
</Anchor>
|
|
</Group>
|
|
</Center>
|
|
</Stack>
|
|
</form>
|
|
</Paper>
|
|
</Container>
|
|
)
|
|
}
|