|
@@ -1,7 +1,5 @@
|
|
import React from 'react';
|
|
import React from 'react';
|
|
import { reduxForm, Field } from 'redux-form';
|
|
import { reduxForm, Field } from 'redux-form';
|
|
-import { connect } from 'react-redux';
|
|
|
|
-import { bindActionCreators } from 'redux';
|
|
|
|
|
|
|
|
import validate from './validate';
|
|
import validate from './validate';
|
|
import formInput from './../../../common/formInput';
|
|
import formInput from './../../../common/formInput';
|
|
@@ -17,8 +15,7 @@ class Form extends React.Component {
|
|
}
|
|
}
|
|
|
|
|
|
render() {
|
|
render() {
|
|
- const { handleSubmit, error } = this.props;
|
|
|
|
- console.log('Auth error', error);
|
|
|
|
|
|
+ const { handleSubmit, requestError, invalid } = this.props;
|
|
|
|
|
|
return (
|
|
return (
|
|
<div className="container">
|
|
<div className="container">
|
|
@@ -27,9 +24,9 @@ class Form extends React.Component {
|
|
|
|
|
|
<form className="text-center" onSubmit={handleSubmit(this.submit)}>
|
|
<form className="text-center" onSubmit={handleSubmit(this.submit)}>
|
|
{
|
|
{
|
|
- error
|
|
|
|
|
|
+ requestError
|
|
?
|
|
?
|
|
- <p className="text-af text-uppercase">{error}</p>
|
|
|
|
|
|
+ <p className="text-af text-uppercase">{requestError}</p>
|
|
:
|
|
:
|
|
null
|
|
null
|
|
}
|
|
}
|
|
@@ -41,10 +38,10 @@ class Form extends React.Component {
|
|
|
|
|
|
<div className="form-group">
|
|
<div className="form-group">
|
|
<label className="text-uppercase">Password</label>
|
|
<label className="text-uppercase">Password</label>
|
|
- <Field type="password" name='password' className="form-control" placeholder="example123" component={formInput} />
|
|
|
|
|
|
+ <Field type="password" name='password' className="form-control" component={formInput} />
|
|
</div>
|
|
</div>
|
|
|
|
|
|
- <button type="submit" className="btn btn-primary">Sign In!</button>
|
|
|
|
|
|
+ <button type="submit" className="btn btn-primary" disabled={invalid}>Sign In!</button>
|
|
</form>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|