finished reset password & other changes

This commit is contained in:
2024-04-24 22:37:55 +03:00
parent b1ad7b5c3e
commit 53cadc289a
58 changed files with 1520 additions and 349 deletions

View File

@@ -24,6 +24,7 @@ import { RegisterSchema } from '@/schemas'
import { AUTH_LOGIN_URL } from '@/config/routes'
export const RegisterForm = () => {
// TODO: create repeat password field
// const [currentPassword, setCurrentPassword] = useState('')
// const [password, setPassword] = useState('')
// const [passwordConfirmation, setPasswordConfirmation] = useState('')
@@ -59,7 +60,7 @@ export const RegisterForm = () => {
backButtonLabel={t('auth.form.register.back_button_label')}
backButtonHref={AUTH_LOGIN_URL}
showSocial
continueWithLabel={t('form.label.continue_with')}
continueWithLabel={t('auth.form.label.continue_with')}
>
<Form {...form}>
<form
@@ -91,7 +92,7 @@ export const RegisterForm = () => {
disabled={isPending}
placeholder={t('form.placeholder.email')}
type="email"
autoComplete="username"
autoComplete="email"
/>
</FormControl>
<FormMessage className="text-xs"/>
@@ -115,7 +116,7 @@ export const RegisterForm = () => {
<FormSuccess message={success}/>
<FormError message={error}/>
<Button type="submit" className="w-full" disabled={isPending}>
{t('form.label.register')}
{t('auth.form.register.button')}
</Button>
</form>
</Form>