mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
30 lines
770 B
JavaScript
30 lines
770 B
JavaScript
import * as React from 'react';
|
|
import { Link } from 'react-router-dom';
|
|
import { Button, InputGroup } from '@blueprintjs/core';
|
|
import { FormattedMessage } from 'react-intl';
|
|
|
|
export default function SendResetPassword() {
|
|
return (
|
|
<div class='login-page'>
|
|
<form>
|
|
<InputGroup
|
|
leftIcon='user'
|
|
placeholder={<FormattedMessage id='email_or_phone_number' />}
|
|
large={true}
|
|
className='input-group--email'
|
|
/>
|
|
|
|
<Button fill={true} large={true}>
|
|
<FormattedMessage id='send_reset_password' />
|
|
</Button>
|
|
</form>
|
|
|
|
<div class='authentication-page__footer'>
|
|
<Link to='/auth/login'>
|
|
<FormattedMessage id='login' />
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|