1
0
Fork 0
mirror of https://codeberg.org/MarkusThielker/next-ory.git synced 2025-07-02 12:59:20 +00:00

NORY-46: add initial create-client form to page

This commit is contained in:
Markus Thielker 2025-02-18 09:13:27 +01:00
parent 253ad4e2b0
commit 749974b7ec
3 changed files with 292 additions and 0 deletions

View file

@ -1,3 +1,6 @@
import { CreateClientForm } from '@/components/forms/client-form';
import { createClient } from '@/lib/action/client';
export default async function CreateClientPage() {
return (
<div className="space-y-4">
@ -7,6 +10,7 @@ export default async function CreateClientPage() {
Configure your new OAuth2 Client.
</p>
</div>
<CreateClientForm action={createClient}/>
</div>
);
}