Manuel Bustillo 9b3443addf
All checks were successful
Check usage of free licenses / build-static-assets (pull_request) Successful in 47s
Add copyright notice / copyright_notice (pull_request) Successful in 1m2s
Playwright Tests / test (pull_request) Successful in 4m32s
Define a basic login form with redirection to the Dashboard
2024-12-01 16:31:56 +01:00

28 lines
557 B
TypeScript

/* Copyright (C) 2024 Manuel Bustillo*/
import Link from 'next/link';
import styles from '@/app/ui/home.module.css';
import LoginForm from '@/app/ui/components/login-form';
export default function Page() {
return (
<main className="flex min-h-screen flex-col p-6">
<div className="flex flex-row">
<div className="w-1/2">
Already have an account? Sign in
<LoginForm />
</div>
<div className="w-1/2">
Don't have an account? Register now!
</div>
</div>
</main>
);
}