'use client'; import { useActionState, useState } from 'react'; import { changePassword } from './actions'; export default function ChangePasswordPage() { const [state, action, isPending] = useActionState(changePassword, undefined); const [showNew, setShowNew] = useState(false); const [showConfirm, setShowConfirm] = useState(false); return (

Logbuch — Sternwarte Welzheim

Passwort ändern

Bitte wählen Sie ein neues Passwort, bevor Sie fortfahren.

{state?.error && (
{state.error}
)}
); }