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:
parent
253ad4e2b0
commit
749974b7ec
3 changed files with 292 additions and 0 deletions
|
@ -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>
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue