File tree 1 file changed +6
-0
lines changed
client/modules/User/pages
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import { reduxForm } from 'redux-form';
8
8
import * as UserActions from '../actions' ;
9
9
import SignupForm from '../components/SignupForm' ;
10
10
import { validateSignup } from '../../../utils/reduxFormUtils' ;
11
+ import SocialAuthButton from '../components/SocialAuthButton' ;
11
12
import Nav from '../../../components/Nav' ;
12
13
13
14
const __process = ( typeof global !== 'undefined' ? global : window ) . process ;
@@ -33,6 +34,11 @@ class SignupView extends React.Component {
33
34
< div className = "form-container__content" >
34
35
< h2 className = "form-container__title" > Sign Up</ h2 >
35
36
< SignupForm { ...this . props } />
37
+ < h2 className = "form-container__divider" > Or</ h2 >
38
+ < div className = "form-container__stack" >
39
+ < SocialAuthButton service = { SocialAuthButton . services . github } />
40
+ < SocialAuthButton service = { SocialAuthButton . services . google } />
41
+ </ div >
36
42
< p className = "form__navigation-options" >
37
43
Already have an account?
38
44
< Link className = "form__login-button" to = "/login" > Log In</ Link >
You can’t perform that action at this time.
0 commit comments