update : loginPage

This commit is contained in:
enggar_ganteng 2019-01-28 15:31:28 +07:00
parent cccca5a774
commit df3d755d2f

View File

@ -38,6 +38,10 @@ export default class LoginComponent extends React.Component {
});
};
register = () => {
this.props.history.push(LINKS.REGISTER);
}
render() {
let loginImage = 'http://giift.asacreative.com/giift_logo_wide.4d15de72.png';
@ -69,6 +73,9 @@ export default class LoginComponent extends React.Component {
Sign In
</button>
</div>
<div style={{marginTop:12,display:'flex',flexDirection:'row'}}>
<a onClick={()=> this.register()} style={{fontWeight:20,fontSize:14}}>Does not have account yet? Let's create your account now!</a>
</div>
</div>
</div>
)