xpeditis2.0/apps/frontend/app/register/page.tsx
2025-10-21 22:00:54 +02:00

220 lines
7.3 KiB
TypeScript

/**
* Register Page
*
* User registration
*/
'use client';
import { useState } from 'react';
import { useAuth } from '@/lib/context/auth-context';
import Link from 'next/link';
export default function RegisterPage() {
const { register } = useAuth();
const [formData, setFormData] = useState({
email: '',
password: '',
confirmPassword: '',
firstName: '',
lastName: '',
organizationId: '', // TODO: Add organization selection
});
const [error, setError] = useState('');
const [loading, setLoading] = useState(false);
const handleChange = (e: React.ChangeEvent<HTMLInputElement>) => {
setFormData({
...formData,
[e.target.name]: e.target.value,
});
};
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault();
setError('');
// Validate passwords match
if (formData.password !== formData.confirmPassword) {
setError('Passwords do not match');
return;
}
// Validate password length
if (formData.password.length < 12) {
setError('Password must be at least 12 characters long');
return;
}
setLoading(true);
try {
await register({
email: formData.email,
password: formData.password,
firstName: formData.firstName,
lastName: formData.lastName,
organizationId: "a1234567-0000-4000-8000-000000000001", // Test Organization (default for development)
});
} catch (err: any) {
setError(
err.response?.data?.message || 'Registration failed. Please try again.'
);
} finally {
setLoading(false);
}
};
return (
<div className="min-h-screen flex items-center justify-center bg-gray-50 py-12 px-4 sm:px-6 lg:px-8">
<div className="max-w-md w-full space-y-8">
<div>
<h1 className="text-center text-4xl font-bold text-blue-600">
Xpeditis
</h1>
<h2 className="mt-6 text-center text-3xl font-extrabold text-gray-900">
Create your account
</h2>
<p className="mt-2 text-center text-sm text-gray-600">
Already have an account?{' '}
<Link
href="/login"
className="font-medium text-blue-600 hover:text-blue-500"
>
Sign in
</Link>
</p>
</div>
<form className="mt-8 space-y-6" onSubmit={handleSubmit}>
{error && (
<div className="rounded-md bg-red-50 p-4">
<div className="text-sm text-red-800">{error}</div>
</div>
)}
<div className="space-y-4">
<div className="grid grid-cols-2 gap-4">
<div>
<label
htmlFor="firstName"
className="block text-sm font-medium text-gray-700"
>
First Name
</label>
<input
id="firstName"
name="firstName"
type="text"
required
value={formData.firstName}
onChange={handleChange}
className="mt-1 appearance-none block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm placeholder-gray-400 focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm"
/>
</div>
<div>
<label
htmlFor="lastName"
className="block text-sm font-medium text-gray-700"
>
Last Name
</label>
<input
id="lastName"
name="lastName"
type="text"
required
value={formData.lastName}
onChange={handleChange}
className="mt-1 appearance-none block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm placeholder-gray-400 focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm"
/>
</div>
</div>
<div>
<label
htmlFor="email"
className="block text-sm font-medium text-gray-700"
>
Email address
</label>
<input
id="email"
name="email"
type="email"
autoComplete="email"
required
value={formData.email}
onChange={handleChange}
className="mt-1 appearance-none block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm placeholder-gray-400 focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm"
/>
</div>
<div>
<label
htmlFor="password"
className="block text-sm font-medium text-gray-700"
>
Password
</label>
<input
id="password"
name="password"
type="password"
autoComplete="new-password"
required
value={formData.password}
onChange={handleChange}
className="mt-1 appearance-none block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm placeholder-gray-400 focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm"
/>
<p className="mt-1 text-xs text-gray-500">
Must be at least 12 characters long
</p>
</div>
<div>
<label
htmlFor="confirmPassword"
className="block text-sm font-medium text-gray-700"
>
Confirm Password
</label>
<input
id="confirmPassword"
name="confirmPassword"
type="password"
autoComplete="new-password"
required
value={formData.confirmPassword}
onChange={handleChange}
className="mt-1 appearance-none block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm placeholder-gray-400 focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm"
/>
</div>
</div>
<div>
<button
type="submit"
disabled={loading}
className="group relative w-full flex justify-center py-2 px-4 border border-transparent text-sm font-medium rounded-md text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 disabled:bg-gray-400 disabled:cursor-not-allowed"
>
{loading ? 'Creating account...' : 'Create account'}
</button>
</div>
<div className="text-xs text-center text-gray-500">
By creating an account, you agree to our{' '}
<Link href="/terms" className="text-blue-600 hover:text-blue-500">
Terms of Service
</Link>{' '}
and{' '}
<Link href="/privacy" className="text-blue-600 hover:text-blue-500">
Privacy Policy
</Link>
</div>
</form>
</div>
</div>
);
}