2 changed files with 45 additions and 9 deletions
@ -1,15 +1,40 @@
|
||||
import React, { Component } from "react"; |
||||
import Button from "@material-ui/core/Button"; |
||||
import Container from '@material-ui/core/Container'; |
||||
import TextField from '@material-ui/core/TextField'; |
||||
import Grid from '@material-ui/core/Grid'; |
||||
|
||||
class Login extends Component { |
||||
state = {}; |
||||
render() { |
||||
return
|
||||
<Container component="login"> |
||||
|
||||
</Container>; |
||||
return ( |
||||
<form> |
||||
<TextField |
||||
variant="outlined" |
||||
margin="normal" |
||||
required |
||||
fullWidth |
||||
id="email" |
||||
label="Email Address" |
||||
name="email" |
||||
autoComplete="email" |
||||
autoFocus |
||||
> |
||||
</TextField> |
||||
<TextField |
||||
type="password" |
||||
variant="outlined" |
||||
margin="normal" |
||||
required |
||||
fullWidth |
||||
id="password" |
||||
label="Password" |
||||
name="password" |
||||
autoComplete="password" |
||||
> |
||||
</TextField> |
||||
</form> |
||||
</Box> |
||||
) |
||||
} |
||||
} |
||||
|
||||
export default App; |
||||
export default Login; |
||||
Loading…
Reference in new issue