mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 14:20:31 +00:00
41 lines
1.2 KiB
TypeScript
41 lines
1.2 KiB
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import intl from 'react-intl-universal';
|
|
import { ControlGroup } from '@blueprintjs/core';
|
|
import { FormattedMessage as T, FFormGroup, FInputGroup } from '@/components';
|
|
|
|
export default function CustomerFormAfterPrimarySection({}) {
|
|
return (
|
|
<div className={'customer-form__after-primary-section-content'}>
|
|
{/*------------ Customer email -----------*/}
|
|
<FFormGroup
|
|
name={'email'}
|
|
label={<T id={'customer_email'} />}
|
|
inline={true}
|
|
>
|
|
<FInputGroup name={'email'} />
|
|
</FFormGroup>
|
|
|
|
{/*------------ Phone number -----------*/}
|
|
<FFormGroup
|
|
name={'personal_phone'}
|
|
label={<T id={'phone_number'} />}
|
|
inline={true}
|
|
>
|
|
<ControlGroup>
|
|
<FInputGroup
|
|
name={'personal_phone'}
|
|
placeholder={intl.get('personal')}
|
|
/>
|
|
<FInputGroup name={'work_phone'} placeholder={intl.get('work')} />
|
|
</ControlGroup>
|
|
</FFormGroup>
|
|
|
|
{/*------------ Customer website -----------*/}
|
|
<FFormGroup name={'website'} label={<T id={'website'} />} inline={true}>
|
|
<FInputGroup name={'website'} placeholder={'http://'} />
|
|
</FFormGroup>
|
|
</div>
|
|
);
|
|
}
|