mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-10 10:02:02 +05:30
54 lines
1.4 KiB
JavaScript
54 lines
1.4 KiB
JavaScript
import React from 'react';
|
|
import icons from 'app/components/ui/icons.scss';
|
|
import { Input, Checkbox } from 'app/components/ui/form';
|
|
import BaseAuthBody from 'app/components/auth/BaseAuthBody';
|
|
import authStyles from 'app/components/auth/auth.scss';
|
|
|
|
import styles from './password.scss';
|
|
import messages from './Password.intl.json';
|
|
|
|
export default class PasswordBody extends BaseAuthBody {
|
|
static displayName = 'PasswordBody';
|
|
static panelId = 'password';
|
|
static hasGoBack = true;
|
|
|
|
autoFocusField = 'password';
|
|
|
|
render() {
|
|
const { user } = this.context;
|
|
|
|
return (
|
|
<div>
|
|
{this.renderErrors()}
|
|
|
|
<div className={styles.miniProfile}>
|
|
<div className={styles.avatar}>
|
|
{user.avatar ? (
|
|
<img src={user.avatar} />
|
|
) : (
|
|
<span className={icons.user} />
|
|
)}
|
|
</div>
|
|
<div className={styles.email}>{user.email || user.username}</div>
|
|
</div>
|
|
|
|
<Input
|
|
{...this.bindField('password')}
|
|
icon="key"
|
|
type="password"
|
|
required
|
|
placeholder={messages.accountPassword}
|
|
/>
|
|
|
|
<div className={authStyles.checkboxInput}>
|
|
<Checkbox
|
|
{...this.bindField('rememberMe')}
|
|
defaultChecked
|
|
label={messages.rememberMe}
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|