comment out login with github button
This commit is contained in:
parent
c2e9cf5998
commit
7d7641b80b
1 changed files with 3 additions and 3 deletions
|
@ -2,7 +2,7 @@ import React from 'react';
|
||||||
import { reduxForm } from 'redux-form';
|
import { reduxForm } from 'redux-form';
|
||||||
import { validateAndLoginUser } from '../actions';
|
import { validateAndLoginUser } from '../actions';
|
||||||
import LoginForm from '../components/LoginForm';
|
import LoginForm from '../components/LoginForm';
|
||||||
import GithubButton from '../components/GithubButton';
|
// import GithubButton from '../components/GithubButton';
|
||||||
import { Link } from 'react-router';
|
import { Link } from 'react-router';
|
||||||
|
|
||||||
|
|
||||||
|
@ -11,8 +11,8 @@ function LoginView(props) {
|
||||||
<div className="login">
|
<div className="login">
|
||||||
<h1>Login</h1>
|
<h1>Login</h1>
|
||||||
<LoginForm {...props} />
|
<LoginForm {...props} />
|
||||||
<h2 className="login__divider">Or</h2>
|
{/* <h2 className="login__divider">Or</h2>
|
||||||
<GithubButton buttonText="Login with Github" />
|
<GithubButton buttonText="Login with Github" /> */}
|
||||||
<Link className="form__cancel-button" to="/">Cancel</Link>
|
<Link className="form__cancel-button" to="/">Cancel</Link>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue