a9bf332369
Removes the blue tint from all dark-mode surfaces by switching CSS variables to zinc-based neutrals, and replaces decorative blue classes with indigo across buttons, focus rings, tabs, and links. Semantic blue (severity badges, status badges, role badges, timeline markers) is preserved. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
82 lines
2.8 KiB
TypeScript
82 lines
2.8 KiB
TypeScript
import { useState } from 'react';
|
|
import { useNavigate } from 'react-router-dom';
|
|
import { useForm } from 'react-hook-form';
|
|
import { zodResolver } from '@hookform/resolvers/zod';
|
|
import { loginSchema, type LoginInput } from '../../../shared/schemas/auth';
|
|
import { useAuth } from '../contexts/AuthContext';
|
|
|
|
export default function Login() {
|
|
const { login } = useAuth();
|
|
const navigate = useNavigate();
|
|
const [error, setError] = useState('');
|
|
|
|
const {
|
|
register,
|
|
handleSubmit,
|
|
formState: { errors, isSubmitting },
|
|
} = useForm<LoginInput>({
|
|
resolver: zodResolver(loginSchema),
|
|
defaultValues: { username: '', password: '' },
|
|
});
|
|
|
|
const onSubmit = async (data: LoginInput) => {
|
|
setError('');
|
|
try {
|
|
await login(data.username, data.password);
|
|
navigate('/');
|
|
} catch {
|
|
setError('Invalid username or password');
|
|
}
|
|
};
|
|
|
|
const inputClass =
|
|
'w-full bg-gray-800 border border-gray-700 text-gray-100 placeholder-gray-500 rounded-lg px-3 py-2 text-sm focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:border-transparent';
|
|
|
|
return (
|
|
<div className="min-h-screen bg-gray-950 flex items-center justify-center px-4">
|
|
<div className="w-full max-w-sm">
|
|
<div className="text-center mb-8">
|
|
<h1 className="text-2xl font-bold text-white">Ticketing System</h1>
|
|
<p className="text-gray-500 text-sm mt-1">Sign in to your account</p>
|
|
</div>
|
|
|
|
<form
|
|
onSubmit={handleSubmit(onSubmit)}
|
|
className="bg-gray-900 border border-gray-800 rounded-xl shadow-2xl p-8 space-y-4"
|
|
noValidate
|
|
>
|
|
{error && (
|
|
<div className="bg-red-500/10 border border-red-500/30 text-red-400 text-sm px-4 py-3 rounded-lg">
|
|
{error}
|
|
</div>
|
|
)}
|
|
|
|
<div>
|
|
<label className="block text-sm font-medium text-gray-300 mb-1">Username</label>
|
|
<input type="text" autoFocus className={inputClass} {...register('username')} />
|
|
{errors.username && (
|
|
<p className="mt-1 text-xs text-red-400">{errors.username.message}</p>
|
|
)}
|
|
</div>
|
|
|
|
<div>
|
|
<label className="block text-sm font-medium text-gray-300 mb-1">Password</label>
|
|
<input type="password" className={inputClass} {...register('password')} />
|
|
{errors.password && (
|
|
<p className="mt-1 text-xs text-red-400">{errors.password.message}</p>
|
|
)}
|
|
</div>
|
|
|
|
<button
|
|
type="submit"
|
|
disabled={isSubmitting}
|
|
className="w-full bg-indigo-600 text-white py-2 rounded-lg text-sm font-medium hover:bg-indigo-700 disabled:opacity-50 transition-colors"
|
|
>
|
|
{isSubmitting ? 'Signing in...' : 'Sign in'}
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|