Files
TaskPool/web/src/pages/Login.tsx
T
admin c3e834a2b4
Build and Deploy / build (push) Failing after 10s
Build and Deploy / docker (push) Has been skipped
Build and Deploy / deploy (push) Has been skipped
fix: remove duplicate endpoints.ts, fix Login imports
- Remove web/src/api/endpoints.ts (redundant with index.ts)
- Fix Login.tsx to use useLogin hook
- Simplify Dockerfile (use CI-built artifacts)
2026-07-20 20:00:41 +00:00

150 lines
4.9 KiB
TypeScript

import { useState } from 'react'
import { useNavigate } from '@tanstack/react-router'
import { useLogin } from '@/api/hooks'
import { Lock, User, AlertCircle } from 'lucide-react'
export default function Login() {
const navigate = useNavigate()
const loginMutation = useLogin()
const [username, setUsername] = useState('')
const [password, setPassword] = useState('')
const [error, setError] = useState('')
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault()
setError('')
try {
await loginMutation.mutateAsync({ username, password })
navigate({ to: '/' })
} catch (err: any) {
setError(err.message || 'Login failed')
}
}
return (
<div style={{
minHeight: '100vh',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
background: 'var(--bg-primary)',
padding: 20,
}}>
<div style={{
width: '100%',
maxWidth: 400,
background: 'var(--bg-secondary)',
border: '1px solid var(--border)',
borderRadius: 12,
padding: 32,
}}>
{/* Logo */}
<div style={{ textAlign: 'center', marginBottom: 32 }}>
<div style={{
width: 56,
height: 56,
background: 'var(--bg-accent)',
borderRadius: 12,
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
margin: '0 auto 16px',
}}>
<span style={{ color: 'white', fontSize: 24, fontWeight: 700 }}>T</span>
</div>
<h1 style={{ fontSize: 24, fontWeight: 600, marginBottom: 8 }}>TaskPool</h1>
<p style={{ color: 'var(--text-muted)', fontSize: 14 }}>Sign in to your account</p>
</div>
{/* Error */}
{error && (
<div style={{
display: 'flex',
alignItems: 'center',
gap: 8,
padding: 12,
background: '#ef444415',
borderRadius: 6,
marginBottom: 20,
}}>
<AlertCircle size={16} style={{ color: '#ef4444' }} />
<span style={{ color: '#ef4444', fontSize: 13 }}>{error}</span>
</div>
)}
{/* Form */}
<form onSubmit={handleSubmit}>
<div style={{ marginBottom: 16 }}>
<label style={{ display: 'block', fontWeight: 500, marginBottom: 8, fontSize: 13 }}>
Username
</label>
<div style={{ position: 'relative' }}>
<User size={16} strokeWidth={1.5} style={{ position: 'absolute', left: 12, top: '50%', transform: 'translateY(-50%)', color: 'var(--text-muted)' }} />
<input
type="text"
value={username}
onChange={(e) => setUsername(e.target.value)}
placeholder="Enter username"
required
style={{
width: '100%',
padding: '10px 12px 10px 40px',
background: 'var(--bg-primary)',
border: '1px solid var(--border)',
borderRadius: 6,
color: 'var(--text-primary)',
fontSize: 14,
}}
/>
</div>
</div>
<div style={{ marginBottom: 24 }}>
<label style={{ display: 'block', fontWeight: 500, marginBottom: 8, fontSize: 13 }}>
Password
</label>
<div style={{ position: 'relative' }}>
<Lock size={16} strokeWidth={1.5} style={{ position: 'absolute', left: 12, top: '50%', transform: 'translateY(-50%)', color: 'var(--text-muted)' }} />
<input
type="password"
value={password}
onChange={(e) => setPassword(e.target.value)}
placeholder="Enter password"
required
style={{
width: '100%',
padding: '10px 12px 10px 40px',
background: 'var(--bg-primary)',
border: '1px solid var(--border)',
borderRadius: 6,
color: 'var(--text-primary)',
fontSize: 14,
}}
/>
</div>
</div>
<button
type="submit"
disabled={loginMutation.isPending}
style={{
width: '100%',
padding: 12,
background: 'var(--bg-accent)',
border: 'none',
borderRadius: 6,
color: 'white',
fontSize: 14,
fontWeight: 500,
cursor: loginMutation.isPending ? 'not-allowed' : 'pointer',
opacity: loginMutation.isPending ? 0.7 : 1,
}}
>
{loginMutation.isPending ? 'Signing in...' : 'Sign In'}
</button>
</form>
</div>
</div>
)
}