mirror of
https://github.com/lemeow125/Ivy-Frontend.git
synced 2024-11-17 06:39:25 +08:00
Added registration page
This commit is contained in:
parent
7b17576add
commit
012f02d4e7
3 changed files with 95 additions and 7 deletions
|
@ -13,6 +13,7 @@ import Product from "./Routes/Product/Product";
|
||||||
import Activation from "./Routes/Activation/Activation";
|
import Activation from "./Routes/Activation/Activation";
|
||||||
import { QueryClient, QueryClientProvider } from "react-query";
|
import { QueryClient, QueryClientProvider } from "react-query";
|
||||||
import NewProduct from "./Routes/NewProduct/NewProduct";
|
import NewProduct from "./Routes/NewProduct/NewProduct";
|
||||||
|
import Register from "./Routes/Register/Register";
|
||||||
|
|
||||||
const queryClient = new QueryClient();
|
const queryClient = new QueryClient();
|
||||||
|
|
||||||
|
@ -86,6 +87,14 @@ const router = createBrowserRouter([
|
||||||
</Container>
|
</Container>
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: "/Register",
|
||||||
|
element: (
|
||||||
|
<Container>
|
||||||
|
<Register />
|
||||||
|
</Container>
|
||||||
|
),
|
||||||
|
},
|
||||||
]);
|
]);
|
||||||
|
|
||||||
export default function App() {
|
export default function App() {
|
||||||
|
|
|
@ -5,9 +5,6 @@ import { Button } from "@mui/material";
|
||||||
import { useDispatch } from "react-redux";
|
import { useDispatch } from "react-redux";
|
||||||
import { useNavigate } from "react-router-dom";
|
import { useNavigate } from "react-router-dom";
|
||||||
import { useState } from "react";
|
import { useState } from "react";
|
||||||
import { Navigate } from "react-router-dom";
|
|
||||||
import { LoginState } from "../../Interfaces/Interfaces";
|
|
||||||
import { useSelector } from "react-redux";
|
|
||||||
|
|
||||||
import { UserInfo, UserLogin } from "../../Components/Api/Api";
|
import { UserInfo, UserLogin } from "../../Components/Api/Api";
|
||||||
import { toggle_login } from "../../Features/Redux/Slices/Login/LoginSlice";
|
import { toggle_login } from "../../Features/Redux/Slices/Login/LoginSlice";
|
||||||
|
@ -21,10 +18,6 @@ export default function Login() {
|
||||||
password: "",
|
password: "",
|
||||||
});
|
});
|
||||||
const [error, setError] = useState("");
|
const [error, setError] = useState("");
|
||||||
const logged_in = useSelector((state: LoginState) => state.logged_in.value);
|
|
||||||
if (logged_in) {
|
|
||||||
return <Navigate to="/" replace />;
|
|
||||||
}
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<div
|
<div
|
||||||
|
|
86
src/Routes/Register/Register.tsx
Normal file
86
src/Routes/Register/Register.tsx
Normal file
|
@ -0,0 +1,86 @@
|
||||||
|
import * as React from "react";
|
||||||
|
import styles from "../../styles";
|
||||||
|
import LoginIcon from "../../Components/Icons/LoginIcon/LoginIcon";
|
||||||
|
import { Button } from "@mui/material";
|
||||||
|
import { useDispatch } from "react-redux";
|
||||||
|
import { useNavigate } from "react-router-dom";
|
||||||
|
import { useState } from "react";
|
||||||
|
import { UserRegister } from "../../Components/Api/Api";
|
||||||
|
export default function Register() {
|
||||||
|
const navigate = useNavigate();
|
||||||
|
const dispatch = useDispatch();
|
||||||
|
const [user, setUser] = useState({
|
||||||
|
email: "",
|
||||||
|
username: "",
|
||||||
|
password: "",
|
||||||
|
});
|
||||||
|
const [feedback, setFeedback] = useState("");
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<div
|
||||||
|
style={{
|
||||||
|
display: "flex",
|
||||||
|
alignItems: "center",
|
||||||
|
flexDirection: "column",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<p style={{ ...styles.text_white, ...styles.text_XL }}>
|
||||||
|
Create an Account
|
||||||
|
</p>
|
||||||
|
<div style={styles.flex_row}>
|
||||||
|
<p style={{ ...styles.text_white, ...styles.text_L }}>Email</p>
|
||||||
|
<div style={{ margin: 4 }} />
|
||||||
|
<input
|
||||||
|
style={styles.text_L}
|
||||||
|
onChange={(e: React.ChangeEvent<HTMLInputElement>) => {
|
||||||
|
setUser({ ...user, email: e.target.value });
|
||||||
|
}}
|
||||||
|
maxLength={20}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div style={styles.flex_row}>
|
||||||
|
<p style={{ ...styles.text_white, ...styles.text_L }}>Username</p>
|
||||||
|
<div style={{ margin: 4 }} />
|
||||||
|
<input
|
||||||
|
style={{ ...styles.text_white, ...styles.text_L }}
|
||||||
|
onChange={(e: React.ChangeEvent<HTMLInputElement>) => {
|
||||||
|
setUser({ ...user, username: e.target.value });
|
||||||
|
}}
|
||||||
|
maxLength={20}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div style={styles.flex_row}>
|
||||||
|
<p style={{ ...styles.text_white, ...styles.text_L }}>Password</p>
|
||||||
|
<div style={{ margin: 4 }} />
|
||||||
|
<input
|
||||||
|
style={{ ...styles.text_white, ...styles.text_L }}
|
||||||
|
type="password"
|
||||||
|
onChange={(e: React.ChangeEvent<HTMLInputElement>) => {
|
||||||
|
setUser({ ...user, password: e.target.value });
|
||||||
|
}}
|
||||||
|
maxLength={20}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<Button
|
||||||
|
style={styles.login_button}
|
||||||
|
variant="contained"
|
||||||
|
onClick={async () => {
|
||||||
|
setUser({
|
||||||
|
...user,
|
||||||
|
});
|
||||||
|
if (await UserRegister(user)) {
|
||||||
|
setFeedback(
|
||||||
|
"Registration success. Please check your email address for activation"
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
setFeedback("Invalid credentials specified");
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
Register
|
||||||
|
</Button>
|
||||||
|
<p style={{ ...styles.text_white, ...styles.text_L }}>{feedback}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
Loading…
Reference in a new issue