All checks were successful
Deploy to Staging / Build Images (pull_request) Successful in 4m38s
Deploy to Staging / Deploy to Staging (pull_request) Successful in 28s
Deploy to Staging / Verify Staging (pull_request) Successful in 6s
Deploy to Staging / Notify Staging Ready (pull_request) Successful in 6s
Deploy to Staging / Notify Staging Failure (pull_request) Has been skipped
- Add terms_agreements table for legal audit trail - Create terms-agreement feature capsule with repository - Modify signup to create terms agreement atomically - Add checkbox with PDF link to SignupForm - Capture IP, User-Agent, terms version, content hash - Update CLAUDE.md documentation index 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
177 lines
7.9 KiB
TypeScript
177 lines
7.9 KiB
TypeScript
/**
|
|
* @ai-summary Signup form component with password validation and show/hide toggle
|
|
*/
|
|
|
|
import React, { useState } from 'react';
|
|
import { useForm } from 'react-hook-form';
|
|
import { zodResolver } from '@hookform/resolvers/zod';
|
|
import { z } from 'zod';
|
|
import { Button } from '../../../shared-minimal/components/Button';
|
|
import { SignupRequest } from '../types/auth.types';
|
|
|
|
const signupSchema = z
|
|
.object({
|
|
email: z.string().email('Please enter a valid email address'),
|
|
password: z
|
|
.string()
|
|
.min(8, 'Password must be at least 8 characters')
|
|
.regex(/[A-Z]/, 'Password must contain at least one uppercase letter')
|
|
.regex(/[0-9]/, 'Password must contain at least one number'),
|
|
confirmPassword: z.string(),
|
|
termsAccepted: z.literal(true, {
|
|
errorMap: () => ({ message: 'You must agree to the Terms & Conditions to create an account' }),
|
|
}),
|
|
})
|
|
.refine((data) => data.password === data.confirmPassword, {
|
|
message: 'Passwords do not match',
|
|
path: ['confirmPassword'],
|
|
});
|
|
|
|
interface SignupFormProps {
|
|
onSubmit: (data: SignupRequest) => void;
|
|
loading?: boolean;
|
|
}
|
|
|
|
export const SignupForm: React.FC<SignupFormProps> = ({ onSubmit, loading }) => {
|
|
const [showPassword, setShowPassword] = useState(false);
|
|
const [showConfirmPassword, setShowConfirmPassword] = useState(false);
|
|
|
|
const {
|
|
register,
|
|
handleSubmit,
|
|
formState: { errors },
|
|
} = useForm<SignupRequest & { confirmPassword: string }>({
|
|
resolver: zodResolver(signupSchema),
|
|
});
|
|
|
|
const handleFormSubmit = (data: SignupRequest & { confirmPassword: string }) => {
|
|
const { email, password, termsAccepted } = data;
|
|
onSubmit({ email, password, termsAccepted });
|
|
};
|
|
|
|
return (
|
|
<form onSubmit={handleSubmit(handleFormSubmit)} className="space-y-4">
|
|
<div>
|
|
<label className="block text-sm font-medium text-avus mb-1">
|
|
Email Address <span className="text-red-400">*</span>
|
|
</label>
|
|
<input
|
|
{...register('email')}
|
|
type="email"
|
|
inputMode="email"
|
|
className="w-full px-3 py-2 border rounded-md min-h-[44px] bg-scuro text-avus border-silverstone placeholder-canna focus:outline-none focus:ring-2 focus:ring-abudhabi focus:border-abudhabi"
|
|
placeholder="your.email@example.com"
|
|
style={{ fontSize: '16px' }}
|
|
/>
|
|
{errors.email && (
|
|
<p className="mt-1 text-sm text-red-400">{errors.email.message}</p>
|
|
)}
|
|
</div>
|
|
|
|
<div>
|
|
<label className="block text-sm font-medium text-avus mb-1">
|
|
Password <span className="text-red-400">*</span>
|
|
</label>
|
|
<div className="relative">
|
|
<input
|
|
{...register('password')}
|
|
type={showPassword ? 'text' : 'password'}
|
|
className="w-full px-3 py-2 pr-10 border rounded-md min-h-[44px] bg-scuro text-avus border-silverstone placeholder-canna focus:outline-none focus:ring-2 focus:ring-abudhabi focus:border-abudhabi"
|
|
placeholder="At least 8 characters"
|
|
style={{ fontSize: '16px' }}
|
|
/>
|
|
<button
|
|
type="button"
|
|
onClick={() => setShowPassword(!showPassword)}
|
|
className="absolute right-3 top-1/2 -translate-y-1/2 text-titanio hover:text-avus focus:outline-none min-w-[44px] min-h-[44px] flex items-center justify-center"
|
|
aria-label={showPassword ? 'Hide password' : 'Show password'}
|
|
>
|
|
{showPassword ? (
|
|
<svg className="w-5 h-5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M13.875 18.825A10.05 10.05 0 0112 19c-4.478 0-8.268-2.943-9.543-7a9.97 9.97 0 011.563-3.029m5.858.908a3 3 0 114.243 4.243M9.878 9.878l4.242 4.242M9.88 9.88l-3.29-3.29m7.532 7.532l3.29 3.29M3 3l3.59 3.59m0 0A9.953 9.953 0 0112 5c4.478 0 8.268 2.943 9.543 7a10.025 10.025 0 01-4.132 5.411m0 0L21 21" />
|
|
</svg>
|
|
) : (
|
|
<svg className="w-5 h-5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
|
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z" />
|
|
</svg>
|
|
)}
|
|
</button>
|
|
</div>
|
|
{errors.password && (
|
|
<p className="mt-1 text-sm text-red-400">{errors.password.message}</p>
|
|
)}
|
|
<p className="mt-1 text-xs text-titanio">
|
|
Must be at least 8 characters with one uppercase letter and one number
|
|
</p>
|
|
</div>
|
|
|
|
<div>
|
|
<label className="block text-sm font-medium text-avus mb-1">
|
|
Confirm Password <span className="text-red-400">*</span>
|
|
</label>
|
|
<div className="relative">
|
|
<input
|
|
{...register('confirmPassword')}
|
|
type={showConfirmPassword ? 'text' : 'password'}
|
|
className="w-full px-3 py-2 pr-10 border rounded-md min-h-[44px] bg-scuro text-avus border-silverstone placeholder-canna focus:outline-none focus:ring-2 focus:ring-abudhabi focus:border-abudhabi"
|
|
placeholder="Re-enter your password"
|
|
style={{ fontSize: '16px' }}
|
|
/>
|
|
<button
|
|
type="button"
|
|
onClick={() => setShowConfirmPassword(!showConfirmPassword)}
|
|
className="absolute right-3 top-1/2 -translate-y-1/2 text-titanio hover:text-avus focus:outline-none min-w-[44px] min-h-[44px] flex items-center justify-center"
|
|
aria-label={showConfirmPassword ? 'Hide password' : 'Show password'}
|
|
>
|
|
{showConfirmPassword ? (
|
|
<svg className="w-5 h-5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M13.875 18.825A10.05 10.05 0 0112 19c-4.478 0-8.268-2.943-9.543-7a9.97 9.97 0 011.563-3.029m5.858.908a3 3 0 114.243 4.243M9.878 9.878l4.242 4.242M9.88 9.88l-3.29-3.29m7.532 7.532l3.29 3.29M3 3l3.59 3.59m0 0A9.953 9.953 0 0112 5c4.478 0 8.268 2.943 9.543 7a10.025 10.025 0 01-4.132 5.411m0 0L21 21" />
|
|
</svg>
|
|
) : (
|
|
<svg className="w-5 h-5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
|
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z" />
|
|
</svg>
|
|
)}
|
|
</button>
|
|
</div>
|
|
{errors.confirmPassword && (
|
|
<p className="mt-1 text-sm text-red-400">{errors.confirmPassword.message}</p>
|
|
)}
|
|
</div>
|
|
|
|
<div className="flex items-start min-h-[44px]">
|
|
<label className="flex items-start cursor-pointer">
|
|
<input
|
|
{...register('termsAccepted')}
|
|
type="checkbox"
|
|
className="w-5 h-5 mt-0.5 rounded border-silverstone text-primary-600 focus:ring-abudhabi dark:border-silverstone dark:focus:ring-abudhabi"
|
|
aria-label="I agree to the Terms and Conditions"
|
|
/>
|
|
<span className="ml-2 text-sm text-avus">
|
|
I agree to the{' '}
|
|
<a
|
|
href="/docs/v2026-01-03.pdf"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="text-abudhabi hover:underline"
|
|
>
|
|
Terms & Conditions
|
|
</a>
|
|
</span>
|
|
</label>
|
|
</div>
|
|
{errors.termsAccepted && (
|
|
<p className="text-sm text-red-400">{errors.termsAccepted.message}</p>
|
|
)}
|
|
|
|
<div className="pt-4">
|
|
<Button type="submit" loading={loading} className="w-full min-h-[44px]">
|
|
Create Account
|
|
</Button>
|
|
</div>
|
|
</form>
|
|
);
|
|
};
|