Files
tuna/frontend/src/components/NameInputScreen.tsx
T

126 lines
5.3 KiB
TypeScript
Raw Normal View History

"use client";
import { useState } from 'react';
interface NameInputScreenProps {
onNameSubmit: (name: string) => void;
}
export default function NameInputScreen({ onNameSubmit }: NameInputScreenProps) {
const [fullName, setFullName] = useState('');
const [isLoading, setIsLoading] = useState(false);
const [error, setError] = useState('');
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault();
if (!fullName.trim()) {
setError('Please enter your full name');
return;
}
if (fullName.trim().split(' ').length < 2) {
setError('Please enter your first and last name');
return;
}
setIsLoading(true);
setError('');
// Small delay to show loading state
setTimeout(() => {
onNameSubmit(fullName.trim());
}, 500);
};
return (
<div className="min-h-screen bg-gradient-to-br from-blue-50 to-indigo-100 flex items-center justify-center p-4">
<div className="max-w-md w-full">
<div className="bg-white rounded-2xl shadow-2xl overflow-hidden">
{/* Header */}
<div className="bg-gradient-to-r from-blue-600 to-indigo-600 px-8 py-6 text-white">
<div className="text-center">
<div className="w-16 h-16 bg-white bg-opacity-20 rounded-full flex items-center justify-center mx-auto mb-4">
<svg className="w-8 h-8" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z" />
</svg>
</div>
<h1 className="text-2xl font-bold mb-2">Personal Information</h1>
<p className="text-blue-100">Please provide your full name to continue</p>
</div>
</div>
{/* Content */}
<div className="px-8 py-8">
<form onSubmit={handleSubmit} className="space-y-6">
<div>
<label htmlFor="fullName" className="block text-sm font-medium text-gray-700 mb-2">
Full Name *
</label>
<input
type="text"
id="fullName"
value={fullName}
onChange={(e) => {
setFullName(e.target.value);
setError('');
}}
className={`w-full px-4 py-3 border rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 transition-colors text-gray-900 placeholder-gray-500 ${
error ? 'border-red-500 bg-red-50' : 'border-gray-300 bg-white'
}`}
placeholder="Enter your first and last name"
disabled={isLoading}
/>
{error && (
<p className="text-red-500 text-sm mt-1 flex items-center">
<svg className="w-4 h-4 mr-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M12 8v4m0 4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
{error}
</p>
)}
</div>
<div className="bg-blue-50 border border-blue-200 rounded-lg p-4">
<div className="flex items-start space-x-3">
<svg className="w-5 h-5 text-blue-600 mt-0.5 flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
<div>
<h3 className="text-sm font-semibold text-blue-800 mb-1">Privacy Notice</h3>
<p className="text-sm text-blue-700">
Your name is visible only to the job poster and will be used for evaluation purposes only.
</p>
</div>
</div>
</div>
<button
type="submit"
disabled={isLoading || !fullName.trim()}
className="w-full px-6 py-4 bg-gradient-to-r from-blue-600 to-indigo-600 text-white rounded-lg hover:from-blue-700 hover:to-indigo-700 focus:outline-none focus:ring-2 focus:ring-blue-500 transition-all transform hover:scale-105 disabled:opacity-50 disabled:cursor-not-allowed disabled:transform-none"
>
<div className="flex items-center justify-center space-x-2">
{isLoading ? (
<>
<div className="w-5 h-5 border-2 border-white border-t-transparent rounded-full animate-spin"></div>
<span>Processing...</span>
</>
) : (
<>
<span>Continue</span>
<svg className="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M9 5l7 7-7 7" />
</svg>
</>
)}
</div>
</button>
</form>
</div>
</div>
</div>
</div>
);
}