e87390adb9
* update eslint and dependencies, fix linting errors that can be fixed with --fix * fix lots of linting errors * update eslintrc, fix some linting errors * fix all server side linting errors, untested * fix errors that fixing linting errors had caused * fix client side eslint errors * fix client side linting errors * fix refs lint errors * fix more linting errors * update eslint and dependencies, fix linting errors that can be fixed with --fix * fix lots of linting errors * update eslintrc, fix some linting errors * fix all server side linting errors, untested * fix errors that fixing linting errors had caused * fix client side eslint errors * fix client side linting errors * fix refs lint errors * fix more linting errors * fix some accessibility linting errors * fix a lot of linting errors * fix a billion more linting errors * hopefully fix all linting errors, still need to test * fix bugs that fixing linting had caused
53 lines
1.7 KiB
JavaScript
53 lines
1.7 KiB
JavaScript
import React, { PropTypes } from 'react';
|
|
import { domOnlyProps } from '../../../utils/reduxFormUtils';
|
|
|
|
function LoginForm(props) {
|
|
const { fields: { email, password }, handleSubmit, submitting, pristine } = props;
|
|
return (
|
|
<form className="form" onSubmit={handleSubmit(props.validateAndLoginUser.bind(this, props.previousPath))}>
|
|
<p className="form__field">
|
|
<label htmlFor="email" className="form__label">Email or Username</label>
|
|
<input
|
|
className="form__input"
|
|
aria-label="email or username"
|
|
type="text"
|
|
id="email"
|
|
{...domOnlyProps(email)}
|
|
/>
|
|
{email.touched && email.error && <span className="form-error">{email.error}</span>}
|
|
</p>
|
|
<p className="form__field">
|
|
<label htmlFor="password" className="form__label">Password</label>
|
|
<input
|
|
className="form__input"
|
|
aria-label="password"
|
|
type="password"
|
|
id="password"
|
|
{...domOnlyProps(password)}
|
|
/>
|
|
{password.touched && password.error && <span className="form-error">{password.error}</span>}
|
|
</p>
|
|
<input type="submit" disabled={submitting || pristine} value="Log In" aria-label="login" />
|
|
</form>
|
|
);
|
|
}
|
|
|
|
LoginForm.propTypes = {
|
|
fields: PropTypes.shape({
|
|
email: PropTypes.object.isRequired,
|
|
password: PropTypes.object.isRequired
|
|
}).isRequired,
|
|
handleSubmit: PropTypes.func.isRequired,
|
|
validateAndLoginUser: PropTypes.func.isRequired,
|
|
submitting: PropTypes.bool,
|
|
pristine: PropTypes.bool,
|
|
previousPath: PropTypes.string.isRequired
|
|
};
|
|
|
|
LoginForm.defaultProps = {
|
|
submitting: false,
|
|
pristine: true,
|
|
invalid: false
|
|
};
|
|
|
|
export default LoginForm;
|