"use client"; import { Button, Form, Input } 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" }, } ); if (response.status == 401) { setErrors({ password: "Invalid username or password" }); setPassword(""); return; } const token = await response.json(); document.cookie = `token=${token}`; toast.success("Successfully logged in"); redirect("/"); }} >
); }