mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 22:30:31 +00:00
98 lines
2.5 KiB
TypeScript
98 lines
2.5 KiB
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import { Form } from 'formik';
|
|
import intl from 'react-intl-universal';
|
|
import { Intent, Button } from '@blueprintjs/core';
|
|
import { Link } from 'react-router-dom';
|
|
import { Tooltip2 } from '@blueprintjs/popover2';
|
|
import styled from 'styled-components';
|
|
|
|
import {
|
|
FFormGroup,
|
|
FInputGroup,
|
|
Row,
|
|
Col,
|
|
FormattedMessage as T,
|
|
} from '@/components';
|
|
import { AuthSubmitButton, AuthenticationLoadingOverlay } from './_components';
|
|
|
|
/**
|
|
* Register form.
|
|
*/
|
|
export default function RegisterForm({ isSubmitting }) {
|
|
const [showPassword, setShowPassword] = React.useState<boolean>(false);
|
|
|
|
// Handle password revealer changing.
|
|
const handleLockClick = () => {
|
|
setShowPassword(!showPassword);
|
|
};
|
|
|
|
const lockButton = (
|
|
<Tooltip2 content={`${showPassword ? 'Hide' : 'Show'} Password`}>
|
|
<Button
|
|
icon={showPassword ? 'unlock' : 'lock'}
|
|
intent={Intent.WARNING}
|
|
minimal={true}
|
|
onClick={handleLockClick}
|
|
small={true}
|
|
/>
|
|
</Tooltip2>
|
|
);
|
|
|
|
return (
|
|
<Form className={'authentication-page__form'}>
|
|
<Row className={'name-section'}>
|
|
<Col md={6}>
|
|
<FFormGroup name={'first_name'} label={<T id={'first_name'} />}>
|
|
<FInputGroup name={'first_name'} large={true} />
|
|
</FFormGroup>
|
|
</Col>
|
|
|
|
<Col md={6}>
|
|
<FFormGroup name={'last_name'} label={<T id={'last_name'} />}>
|
|
<FInputGroup name={'last_name'} large={true} />
|
|
</FFormGroup>
|
|
</Col>
|
|
</Row>
|
|
|
|
<FFormGroup name={'email'} label={<T id={'email'} />}>
|
|
<FInputGroup name={'email'} large={true} />
|
|
</FFormGroup>
|
|
|
|
<FFormGroup name={'password'} label={<T id={'password'} />}>
|
|
<FInputGroup
|
|
name={'password'}
|
|
type={showPassword ? 'text' : 'password'}
|
|
rightElement={lockButton}
|
|
large={true}
|
|
/>
|
|
</FFormGroup>
|
|
|
|
<TermsConditionsText>
|
|
{intl.getHTML('signing_in_or_creating', {
|
|
terms: (msg) => <Link>{msg}</Link>,
|
|
privacy: (msg) => <Link>{msg}</Link>,
|
|
})}
|
|
</TermsConditionsText>
|
|
|
|
<AuthSubmitButton
|
|
className={'btn-register'}
|
|
intent={Intent.PRIMARY}
|
|
type="submit"
|
|
fill={true}
|
|
large={true}
|
|
loading={isSubmitting}
|
|
>
|
|
<T id={'register'} />
|
|
</AuthSubmitButton>
|
|
|
|
{isSubmitting && <AuthenticationLoadingOverlay />}
|
|
</Form>
|
|
);
|
|
}
|
|
|
|
const TermsConditionsText = styled.p`
|
|
opacity: 0.8;
|
|
margin-bottom: 1.4rem;
|
|
`;
|