import { useState } from "react"; import { Link } from "react-router"; import { ChevronLeftIcon, EyeCloseIcon, EyeIcon } from "../../icons"; import Label from "../form/Label"; import Input from "../form/input/InputField"; import Checkbox from "../form/input/Checkbox"; export default function SignUpForm() { const [showPassword, setShowPassword] = useState(false); const [isChecked, setIsChecked] = useState(false); return (
Back to dashboard

Sign Up

Enter your email and password to sign up!

Or
{/* */}
{/* */}
{/* */}
{/* */}
setShowPassword(!showPassword)} className="absolute z-30 -translate-y-1/2 cursor-pointer right-4 top-1/2" > {showPassword ? ( ) : ( )}
{/* */}

By creating an account means you agree to the{" "} Terms and Conditions, {" "} and our{" "} Privacy Policy

{/* */}

Already have an account? {""} Sign In

); }