"use client"; import { Button, Form, Input, Link } from "@nextui-org/react"; import { useState } from "react"; export default function UserPage() { const [username, setUsername] = useState(""); const [password, setPassword] = useState(""); const [password2, setPassword2] = useState(""); const [errors, setErrors] = useState({}); return (
{ setUsername(""); setPassword(""); setPassword2(""); }} onSubmit={async (e) => { e.preventDefault(); if (!password || !username || !password2) { const localErrors: Record = {}; if (password && password.length < 8) { setPassword2(""); setErrors({ password: "Password must be minimum 8 characters" }); return; } if (!password) { localErrors["password"] = "Please enter a valid password"; } if (!password2) { localErrors["password2"] = "Please reenter your password"; } if (!username) { localErrors["username"] = "Please enter a valid username"; } setErrors(localErrors); return; } if (username.length > 32) { setPassword2(""); setErrors({ password: "Usernames can be maximum 32 characters" }); return; } if (password.length < 8) { setPassword2(""); setErrors({ password: "Password must be minimum 8 characters" }); return; } if (password != password2) { setPassword2(""); setErrors({ password2: "Passwords do not match" }); return; } const response = await fetch( process.env.NEXT_PUBLIC_MODE === "PROD" ? "https://d2jam.com/api/v1/signup" : "http://localhost:3005/api/v1/signup", { body: JSON.stringify({ username: username, password: password }), method: "POST", headers: { "Content-Type": "application/json" }, } ); if (response.status == 409) { setErrors({ username: "User already exists" }); setPassword2(""); return; } // const { token, user } = await response.json(); // document.cookie = `token=${token}`; // document.cookie = `user=${user.slug}`; // toast.success("Successfully signed up"); // redirect("/"); }} >

Already have an account? Log In

); }