325c07b469
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
107 lines
4.2 KiB
TypeScript
107 lines
4.2 KiB
TypeScript
'use client';
|
|
|
|
import { useActionState, useState } from 'react';
|
|
import { login } from './actions';
|
|
import packageJson from '@/package.json';
|
|
|
|
export default function LoginPage() {
|
|
const [state, loginAction, isPending] = useActionState(login, undefined);
|
|
const [showPassword, setShowPassword] = useState(false);
|
|
|
|
const version = packageJson.version;
|
|
const buildDate = process.env.NEXT_PUBLIC_BUILD_DATE || new Date().toLocaleDateString('de-DE', { day: '2-digit', month: '2-digit', year: 'numeric' });
|
|
|
|
return (
|
|
<div className="login-wrapper">
|
|
<main className="login-outer">
|
|
<div className="login-header">
|
|
<h1 className="login-page-title">Tabletten-Übersicht</h1>
|
|
</div>
|
|
|
|
<div className="login-center">
|
|
<div className="login-card">
|
|
<h2 className="login-card-title">Anmeldung</h2>
|
|
|
|
<form action={loginAction} className="login-form">
|
|
<div>
|
|
<label htmlFor="username" className="login-label">
|
|
Benutzername
|
|
</label>
|
|
<input
|
|
id="username"
|
|
name="username"
|
|
type="text"
|
|
required
|
|
autoComplete="off"
|
|
className="login-input"
|
|
placeholder="Benutzername"
|
|
disabled={isPending}
|
|
/>
|
|
</div>
|
|
|
|
<div>
|
|
<label htmlFor="password" className="login-label">
|
|
Passwort
|
|
</label>
|
|
<div className="login-password-wrapper">
|
|
<input
|
|
id="password"
|
|
name="password"
|
|
type={showPassword ? 'text' : 'password'}
|
|
required
|
|
autoComplete="new-password"
|
|
className="login-input login-input-password"
|
|
placeholder="Passwort"
|
|
disabled={isPending}
|
|
/>
|
|
<button
|
|
type="button"
|
|
onClick={() => setShowPassword(v => !v)}
|
|
tabIndex={-1}
|
|
aria-label={showPassword ? 'Passwort verbergen' : 'Passwort anzeigen'}
|
|
className="login-eye-btn"
|
|
>
|
|
{showPassword ? (
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" 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 4.411m0 0L21 21" />
|
|
</svg>
|
|
) : (
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" 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>
|
|
</div>
|
|
|
|
{state?.error && (
|
|
<div className="login-error">
|
|
{state.error}
|
|
</div>
|
|
)}
|
|
|
|
<button
|
|
type="submit"
|
|
disabled={isPending}
|
|
className="login-submit"
|
|
>
|
|
{isPending ? 'Anmeldung läuft...' : 'Anmelden'}
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<footer className="login-footer">
|
|
<div>
|
|
<a href="mailto:rxf@gmx.de">mailto:rxf@gmx.de</a>
|
|
</div>
|
|
<div>
|
|
Version {version} - {buildDate}
|
|
</div>
|
|
</footer>
|
|
</main>
|
|
</div>
|
|
);
|
|
}
|