1234567891011121314151617181920212223242526272829 |
- import { useMutation } from '@apollo/react-hooks'
- import { USER_RESET_PASSWORD } from './graphql'
- import { useFormHandler, TextInput } from '../form/forms'
- import { FormEvent } from 'react'
- const initialValues = {
- password: '',
- passwordAgain: ''
- }
- const ResetPassword = () => {
- const [resetPassword, { loading, error }] = useMutation(USER_RESET_PASSWORD)
- const { inputProps } = useFormHandler(initialValues)
- return (
- <form onSubmit={async (event: FormEvent) => {
- event.preventDefault()
- }}>
- <TextInput label='Password' {...inputProps('password')} />
- <TextInput label='Repeat password' {...inputProps('passwordAgain')} />
- <button type='submit' disabled={loading}>Reset Password</button>
- </form>
- )
- }
- export default ResetPassword
|