2 changed files with 41 additions and 6 deletions
@ -1,11 +1,39 @@ |
|||||||
import React, { Component } from "react"; |
import React, { Component } from "react"; |
||||||
import Button from "@material-ui/core/Button"; |
import TextField from '@material-ui/core/TextField'; |
||||||
import Container from '@material-ui/core/Container'; |
import Grid from '@material-ui/core/Grid'; |
||||||
|
|
||||||
class Login extends Component { |
class Login extends Component { |
||||||
state = {}; |
state = {}; |
||||||
render() { |
render() { |
||||||
return {} |
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> |
||||||
|
) |
||||||
} |
} |
||||||
} |
} |
||||||
|
|
||||||
|
|||||||
Loading…
Reference in new issue