diff options
author | eug-vs <eug-vs@keemail.me> | 2020-11-14 22:40:56 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2020-11-14 22:40:56 +0300 |
commit | b978e6a4958cb543bd73259ec6d43e98dfb7ae18 (patch) | |
tree | 26098fa174e304fda7219ab6ce1372586668f232 /src | |
parent | e2c16ba26decc7b3dcc84a188bdbe0583f492841 (diff) | |
download | famcs-kit-b978e6a4958cb543bd73259ec6d43e98dfb7ae18.tar.gz |
feat: markup login section
Diffstat (limited to 'src')
-rw-r--r-- | src/containers/LoginSection/LoginSection.tsx | 34 |
1 files changed, 33 insertions, 1 deletions
diff --git a/src/containers/LoginSection/LoginSection.tsx b/src/containers/LoginSection/LoginSection.tsx index c7e2785..b870c7d 100644 --- a/src/containers/LoginSection/LoginSection.tsx +++ b/src/containers/LoginSection/LoginSection.tsx @@ -1,12 +1,44 @@ import React from 'react'; import { ContentSection } from 'react-benzin'; -import { Link } from '@material-ui/core'; +import { Link, TextField, Button } from '@material-ui/core'; +import { makeStyles } from '@material-ui/core/styles'; + +const useStyles = makeStyles(theme => ({ + form: { + width: theme.spacing(50), + display: 'flex', + flexDirection: 'column', + '& > *': { + margin: theme.spacing(1) + } + }, +})); + const LoginSection: React.FC = () => { + const classes = useStyles(); return ( <ContentSection sectionName="Login" level={1}> Log in using your <Link href="https://edufpmi.bsu.by">EDUFPMI</Link> credentials + <p className={classes.form}> + <TextField + variant="outlined" + label="Username" + /> + <TextField + variant="outlined" + label="Password" + type="password" + /> + <Button + variant="contained" + size="large" + color="primary" + > + Login + </Button> + </p> </ContentSection> ); }; |