projeto-hit/frontend/src/pages/Login/index.js

145 lines
4.2 KiB
JavaScript
Raw Normal View History

import React from "react";
import { i18n } from "../../translate/i18n";
import ContainerLogin from "../../components/Base/ContainerLogin";
//! Can i Delete this comment above?
// const Copyright = () => {
// return (
// <Typography variant="body2" color="textSecondary" align="center">
// {"Copyleft "}
// <Link color="inherit" href="https://github.com/canove">
// Canove
// </Link>{" "}
// {new Date().getFullYear()}
// {"."}
// </Typography>
// );
// };
// const useStyles = makeStyles((theme) => ({
// paper: {
// marginTop: theme.spacing(8),
// display: "flex",
// flexDirection: "column",
// alignItems: "center",
// },
// avatar: {
// margin: theme.spacing(1),
// backgroundColor: theme.palette.secondary.main,
// },
// form: {
// width: "100%", // Fix IE 11 issue.
// marginTop: theme.spacing(1),
// },
// submit: {
// margin: theme.spacing(3, 0, 2),
// },
// }));
const Login = () => {
// const classes = useStyles();
// const [user, setUser] = useState({ email: "", password: "" });
// const [showPassword, setShowPassword] = useState(false);
// const { handleLogin } = useContext(AuthContext);
// const handleChangeInput = (e) => {
// setUser({ ...user, [e.target.name]: e.target.value });
// };
// const handlSubmit = (e) => {
// e.preventDefault();
// handleLogin(user);
// };
return (
// <Container component="main" maxWidth="xs">
// <CssBaseline />
// <div className={classes.paper}>
// <Avatar className={classes.avatar} style={{ backgroundColor: "#ec5114" }}>
// <PersonOutlineOutlined/>
// </Avatar>
// <Typography component="h1" variant="h5">
// {i18n.t("login.title")}
// </Typography>
// <form className={classes.form} noValidate onSubmit={handlSubmit}>
// <TextField
// variant="outlined"
// margin="normal"
// required
// fullWidth
// id="email"
// label={i18n.t("login.form.email")}
// name="email"
// value={user.email}
// onChange={handleChangeInput}
// autoComplete="email"
// autoFocus
// />
// <TextField
// variant="outlined"
// margin="normal"
// required
// fullWidth
// name="password"
// label={i18n.t("login.form.password")}
// id="password"
// value={user.password}
// onChange={handleChangeInput}
// autoComplete="current-password"
// type={showPassword ? 'text' : 'password'}
// InputProps={{
// endAdornment: (
// <InputAdornment position="end">
// <IconButton
// aria-label="toggle password visibility"
// onClick={() => setShowPassword((e) => !e)}
// >
// {showPassword ? <VisibilityOff /> : <Visibility />}
// </IconButton>
// </InputAdornment>
// )
// }}
// />
// <Button
// type="submit"
// fullWidth
// variant="contained"
// color="primary"
// className={classes.submit}
// >
// {i18n.t("login.buttons.submit")}
// </Button>
// <Grid container>
// <Grid item>
// <Link
// href="#"
// variant="body2"
// component={RouterLink}
// to="/signup"
// >
// {/* {i18n.t("login.buttons.register")} */}
// </Link>
// </Grid>
// </Grid>
// </form>
// </div>
// <Box mt={8}>{/* <Copyright /> */}</Box>
// </Container>
<ContainerLogin>
<h1>teste</h1>
<h2>teste</h2>
<p>Teste paragraph</p>
</ContainerLogin>
);
};
export default Login;