Add signup and login btns

This commit is contained in:
bsquillari 2023-11-29 04:18:12 +00:00
parent fd8ac67cf1
commit 42eeac8d2a
2 changed files with 20 additions and 0 deletions

View File

@ -1,11 +1,13 @@
import React, { useState } from "react"; import React, { useState } from "react";
import { Button, Input } from "antd"; import { Button, Input } from "antd";
import useAuth from "../../useAuth"; import useAuth from "../../useAuth";
import { useNavigate } from "react-router";
export const LogIn = () => { export const LogIn = () => {
const { login, loading, error } = useAuth(); const { login, loading, error } = useAuth();
const [email, setEmail] = useState(""); const [email, setEmail] = useState("");
const [password, setPassword] = useState(""); const [password, setPassword] = useState("");
const navigate = useNavigate();
return ( return (
<div className="Box Small"> <div className="Box Small">
@ -28,6 +30,14 @@ export const LogIn = () => {
> >
Log in Log in
</Button> </Button>
<Button
style={{ width: "100%" }}
onClick={() =>
navigate("/signup")
}
>
Sign up
</Button>
{error ? ( {error ? (
<div className="Disconnected">{error}</div> <div className="Disconnected">{error}</div>
) : ( ) : (

View File

@ -1,12 +1,14 @@
import React, { useState } from "react"; import React, { useState } from "react";
import { Button, Input } from "antd"; import { Button, Input } from "antd";
import { useCreateUser } from "../../hooks/useCreateUser"; import { useCreateUser } from "../../hooks/useCreateUser";
import { useNavigate } from "react-router";
export const SignUp = () => { export const SignUp = () => {
const [username, setUsername] = useState(""); const [username, setUsername] = useState("");
const [email, setEmail] = useState(""); const [email, setEmail] = useState("");
const [password, setPassword] = useState(""); const [password, setPassword] = useState("");
const [repeatPassword, setRepeatPassword] = useState(""); const [repeatPassword, setRepeatPassword] = useState("");
const navigate = useNavigate();
const { createUser, isLoading, error } = useCreateUser(); const { createUser, isLoading, error } = useCreateUser();
@ -46,6 +48,14 @@ export const SignUp = () => {
> >
Sign up Sign up
</Button> </Button>
<Button
style={{ width: "100%" }}
onClick={() =>
navigate("/login")
}
>
Login
</Button>
{error ? ( {error ? (
<div className="Disconnected">{error}</div> <div className="Disconnected">{error}</div>
) : ( ) : (