Initial commit: FL-Akademie LMS mit Docker, Admin, Portal und Dokumentation.
Made-with: Cursor
This commit is contained in:
16
app/login/page.tsx
Normal file
16
app/login/page.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import { Suspense } from "react";
|
||||
import { LoginForm } from "@/components/login-form";
|
||||
|
||||
export default function LoginPage() {
|
||||
return (
|
||||
<section className="section">
|
||||
<div className="container">
|
||||
<h1>Anmelden</h1>
|
||||
<p className="muted">Entwicklung: Demo-Zugänge siehe docs/PLAN.md</p>
|
||||
<Suspense fallback={<p className="muted">Laden…</p>}>
|
||||
<LoginForm />
|
||||
</Suspense>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user