Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
// @flow
import * as React from "react";
import { FormCard, FormTextInput, StandaloneFormPage } from "../../../";
import withTouchedErrors from "../../../helpers/withTouchedErrors.react";
import defaultStrings from "./LoginPage.strings";
import type { stringTypes } from "./LoginPage.strings";
import type { FormEvents, FocusEvents } from "../../../";
type fieldTypes = {|
email?: string,
password?: string,
|};
type touchedTypes = {|
email?: boolean,
password?: boolean,
|};
type Props = {|
...FormEvents,
...FocusEvents,
+strings?: stringTypes,
+action?: string,
+method?: string,
+values?: fieldTypes,
+errors?: fieldTypes,
+touched?: touchedTypes,
|};
/**
* A login page
* Can be easily wrapped with form libraries like formik and redux-form
*/
function LoginPage(props: Props): React.Node {
const {
action,
method,
onSubmit,
onChange,
onBlur,
values,
strings = {},
errors,
imageURL,
} = props;
return (
<StandaloneFormPage imageURL={imageURL}>
<FormCard
buttonText={strings.buttonText || defaultStrings.buttonText}
title={strings.title || defaultStrings.title}
onSubmit={onSubmit}
action={action}
method={method}
>
<FormTextInput
name="email"
label={strings.emailLabel || defaultStrings.emailLabel}
placeholder={
strings.emailPlaceholder || defaultStrings.emailPlaceholder
}
onChange={onChange}
onBlur={onBlur}
value={values && values.email}
error={errors && errors.email}
/>
<FormTextInput
name="password"
type="password"
label={strings.passwordLabel || defaultStrings.passwordLabel}
placeholder={
strings.passwordPlaceholder || defaultStrings.passwordPlaceholder
}
onChange={onChange}
onBlur={onBlur}
value={values && values.password}
error={errors && errors.password}
/>
</FormCard>
</StandaloneFormPage>
);
}
const LoginPageWithTouchedErrors: React.ComponentType<Props> = withTouchedErrors(
["email", "password"]
)(LoginPage);
export default LoginPageWithTouchedErrors;