Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | 5x 5x 5x 5x 4x 1x 1x 3x 5x 3x 2x 1x 5x 1x 1x 1x 1x | import { useContext, useEffect, useState } from "react";
import { Changecolor } from "../components/ChangeColor";
import { ActiveLink } from "../components/Routes";
import { GlobalContext } from "../contexts/GlobalContext";
import styles from "../styles/pages/Login.module.css";
import { GetServerSideProps } from "next";
type PropsDate = {
darkMod: string;
};
export default function Login(props: PropsDate) {
const [signed, setSigned] = useState(true);
const [usetext, setUseText] = useState("");
const { setNameProfiler, changelight } = useContext(GlobalContext);
useEffect(() => {
if (usetext != "") {
setSigned(false);
setNameProfiler(usetext);
} else {
setSigned(true);
}
}, [usetext]);
useEffect(() => {
if (props.darkMod == "true") {
changelight(true);
} else {
changelight(false);
}
}, []);
return (
<div className={styles.loginContainer}>
<Changecolor />
<section>
<div className={styles.loginImage}>
<img src="logo.svg" alt="Icon" />
</div>
<div className={styles.camposLogin}>
<img src="logo-full.svg" alt="Logo" />
<strong>Bem-vindo</strong>
<div className={styles.git}>
<img src="gitlogo.png" alt="github" />{" "}
<p>Faça login com github para começar.</p>
</div>
<div className={styles.inputLogin}>
<input
type="text"
data-testid="inputUsername"
placeholder={"Digite seu username "}
onChange={(text) => setUseText(text.target.value)}
/>
<ActiveLink href="/main">
<button data-testid="mainButtonLogin" disabled={signed}>
{"->"}
</button>
</ActiveLink>
</div>
</div>
</section>
</div>
);
}
export const getServerSideProps: GetServerSideProps = async (ctx) => {
const { darkMod } = ctx.req.cookies;
return {
props: {
darkMod: darkMod,
},
};
};
|