mirror of
https://github.com/lemeow125/React-NotesApp.git
synced 2024-11-17 06:29:28 +08:00
Added login functionality
This commit is contained in:
parent
aea617500c
commit
5a34617d77
2 changed files with 29 additions and 4 deletions
|
@ -22,3 +22,21 @@ export function AddNote(note: note) {
|
|||
export function DeleteNote(id: number) {
|
||||
return axios.delete("http://localhost:8000/api/v1/notes/" + id + "/");
|
||||
}
|
||||
|
||||
export interface user {
|
||||
username: string;
|
||||
password: string;
|
||||
}
|
||||
|
||||
export function UserLogin(user: user) {
|
||||
return axios
|
||||
.post("http://localhost:8000/api/v1/accounts/token/login", user)
|
||||
.then((response) => {
|
||||
console.log("Success! Token: " + response.data);
|
||||
return true;
|
||||
})
|
||||
.catch((error) => {
|
||||
console.log("Login Failed: " + error);
|
||||
return false;
|
||||
});
|
||||
}
|
||||
|
|
|
@ -5,6 +5,7 @@ import { useLocation, useNavigate } from "react-router-dom";
|
|||
import Header from "../../Components/Header/Header";
|
||||
import { useState } from "react";
|
||||
import { Button } from "@mui/material";
|
||||
import { UserLogin } from "../../Components/Api/Api";
|
||||
|
||||
export default function Login() {
|
||||
const navigate = useNavigate();
|
||||
|
@ -12,7 +13,8 @@ export default function Login() {
|
|||
username: "",
|
||||
password: "",
|
||||
});
|
||||
console.log("We are in the" + useLocation());
|
||||
const [error, setError] = useState("");
|
||||
|
||||
return (
|
||||
<div style={styles.background}>
|
||||
<Header />
|
||||
|
@ -44,17 +46,22 @@ export default function Login() {
|
|||
<Button
|
||||
style={styles.button_green}
|
||||
variant="contained"
|
||||
onClick={() => {
|
||||
navigate("/Login");
|
||||
onClick={async () => {
|
||||
if (await UserLogin(user)) {
|
||||
navigate("/");
|
||||
} else {
|
||||
setError("Invalid Login");
|
||||
}
|
||||
}}
|
||||
>
|
||||
Login
|
||||
</Button>
|
||||
<p style={styles.text_small_red}>{error}</p>
|
||||
<Button
|
||||
style={styles.button_yellow}
|
||||
variant="contained"
|
||||
onClick={() => {
|
||||
navigate("/Login");
|
||||
navigate("/Register");
|
||||
}}
|
||||
>
|
||||
Register
|
||||
|
|
Loading…
Reference in a new issue