116 lines
3.4 KiB
TypeScript
116 lines
3.4 KiB
TypeScript
"use client";
|
|
|
|
import { useState } from "react";
|
|
import { useRouter } from "next/navigation";
|
|
import { useAuth } from "../auth-context";
|
|
import { authFormStyles as styles } from "../styles/auth-form";
|
|
|
|
export default function SignupPage() {
|
|
const [email, setEmail] = useState("");
|
|
const [password, setPassword] = useState("");
|
|
const [confirmPassword, setConfirmPassword] = useState("");
|
|
const [error, setError] = useState("");
|
|
const [isSubmitting, setIsSubmitting] = useState(false);
|
|
const { register } = useAuth();
|
|
const router = useRouter();
|
|
|
|
const handleSubmit = async (e: React.FormEvent) => {
|
|
e.preventDefault();
|
|
setError("");
|
|
|
|
if (password !== confirmPassword) {
|
|
setError("Passwords do not match");
|
|
return;
|
|
}
|
|
|
|
if (password.length < 6) {
|
|
setError("Password must be at least 6 characters");
|
|
return;
|
|
}
|
|
|
|
setIsSubmitting(true);
|
|
|
|
try {
|
|
await register(email, password);
|
|
router.push("/");
|
|
} catch (err) {
|
|
setError(err instanceof Error ? err.message : "Registration failed");
|
|
} finally {
|
|
setIsSubmitting(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<main style={styles.main}>
|
|
<div style={styles.container}>
|
|
<div style={styles.card}>
|
|
<div style={styles.header}>
|
|
<h1 style={styles.title}>Create account</h1>
|
|
<p style={styles.subtitle}>Get started with your journey</p>
|
|
</div>
|
|
|
|
<form onSubmit={handleSubmit} style={styles.form}>
|
|
{error && <div style={styles.error}>{error}</div>}
|
|
|
|
<div style={styles.field}>
|
|
<label htmlFor="email" style={styles.label}>Email</label>
|
|
<input
|
|
id="email"
|
|
type="email"
|
|
value={email}
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
style={styles.input}
|
|
placeholder="you@example.com"
|
|
required
|
|
/>
|
|
</div>
|
|
|
|
<div style={styles.field}>
|
|
<label htmlFor="password" style={styles.label}>Password</label>
|
|
<input
|
|
id="password"
|
|
type="password"
|
|
value={password}
|
|
onChange={(e) => setPassword(e.target.value)}
|
|
style={styles.input}
|
|
placeholder="••••••••"
|
|
required
|
|
/>
|
|
</div>
|
|
|
|
<div style={styles.field}>
|
|
<label htmlFor="confirmPassword" style={styles.label}>Confirm Password</label>
|
|
<input
|
|
id="confirmPassword"
|
|
type="password"
|
|
value={confirmPassword}
|
|
onChange={(e) => setConfirmPassword(e.target.value)}
|
|
style={styles.input}
|
|
placeholder="••••••••"
|
|
required
|
|
/>
|
|
</div>
|
|
|
|
<button
|
|
type="submit"
|
|
style={{
|
|
...styles.button,
|
|
opacity: isSubmitting ? 0.7 : 1,
|
|
}}
|
|
disabled={isSubmitting}
|
|
>
|
|
{isSubmitting ? "Creating account..." : "Create account"}
|
|
</button>
|
|
</form>
|
|
|
|
<p style={styles.footer}>
|
|
Already have an account?{" "}
|
|
<a href="/login" style={styles.link}>
|
|
Sign in
|
|
</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
);
|
|
}
|