"use client"; import { Button, Form, Input, Link } from "@nextui-org/react"; import { redirect } from "next/navigation"; import { useState } from "react"; import { toast } from "react-toastify"; export default function UserPage() { const [username, setUsername] = useState(""); const [password, setPassword] = useState(""); const [errors, setErrors] = useState({}); return (
{ setUsername(""); setPassword(""); }} onSubmit={async (e) => { e.preventDefault(); if (!username && !password) { setErrors({ username: "Please enter a valid username", password: "Please enter a valid password", }); return; } if (!username) { setErrors({ username: "Please enter a valid username" }); return; } if (!password) { setErrors({ password: "Please enter a valid password" }); return; } const response = await fetch( process.env.NEXT_PUBLIC_MODE === "PROD" ? "https://d2jam.com/api/v1/login" : "http://localhost:3005/api/v1/login", { body: JSON.stringify({ username: username, password: password }), method: "POST", headers: { "Content-Type": "application/json" }, credentials: "include", } ); if (response.status == 401) { setErrors({ password: "Invalid username or password" }); setPassword(""); return; } const { user } = await response.json(); const token = response.headers.get("Authorization"); console.log(response.headers); if (!token) { toast.error("Failed to retreive access token"); setPassword(""); return; } document.cookie = `token=${token}`; document.cookie = `user=${user.slug}`; toast.success("Successfully logged in"); redirect("/"); }} >

Don't have an account? Sign up

); }