mirror of
https://github.com/Noooste/garage-ui.git
synced 2026-08-13 06:56:54 +00:00
72 lines
2.1 KiB
TypeScript
72 lines
2.1 KiB
TypeScript
import { useState } from 'react';
|
|
import { useNavigate, useSearchParams } from 'react-router-dom';
|
|
import { useAuthStore } from '@/store/auth-store';
|
|
import { Button } from '@/components/ui/button';
|
|
import { Input } from '@/components/ui/input';
|
|
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card';
|
|
|
|
export function TokenLoginForm() {
|
|
const [token, setToken] = useState('');
|
|
const [isLoading, setIsLoading] = useState(false);
|
|
const [searchParams] = useSearchParams();
|
|
const navigate = useNavigate();
|
|
const { loginToken } = useAuthStore();
|
|
|
|
const returnUrl = searchParams.get('returnUrl') || '/';
|
|
|
|
const handleSubmit = async (e: React.FormEvent) => {
|
|
e.preventDefault();
|
|
setIsLoading(true);
|
|
|
|
try {
|
|
await loginToken(token);
|
|
navigate(decodeURIComponent(returnUrl));
|
|
} catch (error) {
|
|
console.error('Login failed:', error);
|
|
} finally {
|
|
setIsLoading(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<Card className="w-full">
|
|
<CardHeader className="space-y-1">
|
|
<div className="flex items-center justify-center mb-4">
|
|
<img
|
|
src="/garage.png"
|
|
alt="Garage Logo"
|
|
className="h-16 w-16 object-contain"
|
|
/>
|
|
</div>
|
|
<CardTitle className="text-2xl text-center">
|
|
Welcome to Garage UI
|
|
</CardTitle>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<form onSubmit={handleSubmit} className="space-y-4">
|
|
<div className="space-y-2">
|
|
<label htmlFor="admin-token" className="text-sm font-medium">Admin Token</label>
|
|
<Input
|
|
id="admin-token"
|
|
type="password"
|
|
placeholder="Enter your Garage admin token"
|
|
value={token}
|
|
onChange={(e) => setToken(e.target.value)}
|
|
required
|
|
disabled={isLoading}
|
|
autoComplete="off"
|
|
/>
|
|
</div>
|
|
<Button
|
|
type="submit"
|
|
className="w-full"
|
|
disabled={isLoading || !token}
|
|
>
|
|
{isLoading ? 'Signing in...' : 'Sign in'}
|
|
</Button>
|
|
</form>
|
|
</CardContent>
|
|
</Card>
|
|
);
|
|
}
|