Skip to content
Snippets Groups Projects
Commit 175e955e authored by Ismail's avatar Ismail
Browse files

SignIn finalized! successfully link with firebase DB

parent 1994958c
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@ class Signin extends Component {
this.props.signIn(this.state);
}
render(){
console.log(this.props);
const { authError } = this.props;
return(
<div className="Login">
<div className="login-wrap">
......@@ -38,7 +38,9 @@ class Signin extends Component {
<input type="password" className="form-control" id="password" onChange={this.handleChange} placeholder="Enter password" name="pwd" />
</div>
<button className="btn btn-primary">Submit</button>
<div className="form-group">
{ authError ?<label className="error text-danger">{authError} </label>: null}
</div>
</form>
</div>
</div>
......@@ -47,10 +49,9 @@ class Signin extends Component {
}
const mapStateToProps = (state) => {
console.log(state);
//console.log(state.authError);
return {
//authError: state.auth.authError,
auth: state.firebase.auth
authError: state.authError,
}
}
......
......@@ -3,7 +3,7 @@ const initState = {}
const authReducer = (state = initState, action) => {
switch (action.type) {
case 'LOGIN_FAIL':
//console.log('Login error');
console.log(state);
return {
...state,
authError: 'Login Failed'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment