This repository has been archived on 2026-01-31. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
nextjs-auth0/app/login/page.tsx
2024-06-25 21:50:16 +02:00

9 lines
160 B
TypeScript

export default function SignIn() {
return (
<div>
<a href='/api/auth/login'>Login</a>
<a href='/api/auth/logout'>Logout</a>
</div>
);
}