Aktueller Stand

This commit is contained in:
2026-01-15 16:24:09 +01:00
parent 5d2630a02f
commit 46eae2a2a9
70 changed files with 7866 additions and 447 deletions

View File

@@ -40,30 +40,33 @@ export default function RegisterPage() {
};
return (
<div className="mx-auto max-w-md rounded bg-white p-6 shadow-sm">
<div className="mx-auto max-w-md card fade-up">
<h1 className="text-2xl font-semibold">Registrieren</h1>
<p className="mt-1 text-sm text-slate-600">
Erstelle ein Konto, um Termine vorzuschlagen und eigene Ansichten anzulegen.
</p>
<form onSubmit={onSubmit} className="mt-4 space-y-3">
<input
name="name"
type="text"
placeholder="Name"
className="w-full rounded border border-slate-300 px-3 py-2"
className="w-full rounded-xl border border-slate-300 px-3 py-2"
/>
<input
name="email"
type="email"
placeholder="E-Mail"
required
className="w-full rounded border border-slate-300 px-3 py-2"
className="w-full rounded-xl border border-slate-300 px-3 py-2"
/>
<input
name="password"
type="password"
placeholder="Passwort"
required
className="w-full rounded border border-slate-300 px-3 py-2"
className="w-full rounded-xl border border-slate-300 px-3 py-2"
/>
<button type="submit" className="w-full rounded bg-brand-500 px-4 py-2 text-white">
<button type="submit" className="btn-accent w-full">
Konto anlegen
</button>
</form>