Added Google and Facebook login, added styling for login form

This commit is contained in:
2019-10-22 03:52:27 +05:30
parent 1c5a26d18a
commit 461f51ac3b
36 changed files with 2052 additions and 153 deletions

View File

@@ -0,0 +1,28 @@
import React from 'react';
import PropTypes from 'prop-types'
import styles from './Jumbotron.module.scss';
import {Link} from 'react-router-dom'
const Jumbotron = props => {
return (
<div className={`${styles['c-Jumbotron']} jumbotron`}>
<h1 className="display-4">{props.jumboText}</h1>
<p className="lead">{props.subText}</p>
<hr className={`${styles['my-4']} my-4`}/>
<p>{props.jumboDescription}</p>
<p className="lead">
<Link className="btn btn-primary btn-lg" to="#" role="button">Let's get started</Link>
<Link className="btn btn-primary btn-lg float-right" to="#" role="button" style={{marginLeft: '15px'}}>{props.furtherLink}</Link>
</p>
</div>
);
};
Jumbotron.propTypes = {
furtherLink: PropTypes.string,
jumboDescription: PropTypes.string,
jumboText: PropTypes.string,
subText: PropTypes.string
};
export default Jumbotron;