mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 06:42:59 +00:00
initial setup, ztdl-login, core
This commit is contained in:
53
apps/login/lib/demos.ts
Normal file
53
apps/login/lib/demos.ts
Normal file
@@ -0,0 +1,53 @@
|
||||
export type Item = {
|
||||
name: string;
|
||||
slug: string;
|
||||
description?: string;
|
||||
};
|
||||
|
||||
export const demos: { name: string; items: Item[] }[] = [
|
||||
{
|
||||
name: 'Pages',
|
||||
items: [
|
||||
{
|
||||
name: 'Login',
|
||||
slug: 'login',
|
||||
description: 'The entrypoint of the application',
|
||||
},
|
||||
{
|
||||
name: 'Password',
|
||||
slug: 'password',
|
||||
description: 'The page to request a users password',
|
||||
},
|
||||
{
|
||||
name: 'Set Password',
|
||||
slug: 'password/set',
|
||||
description: 'The page to set a users password',
|
||||
},
|
||||
{
|
||||
name: 'MFA',
|
||||
slug: 'mfa',
|
||||
description: 'The page to request a users mfa method',
|
||||
},
|
||||
{
|
||||
name: 'MFA',
|
||||
slug: 'mfa/set',
|
||||
description: 'The page to set a users mfa method',
|
||||
},
|
||||
{
|
||||
name: 'MFA Create',
|
||||
slug: 'mfa/create',
|
||||
description: 'The page to create a users mfa method',
|
||||
},
|
||||
{
|
||||
name: 'Passwordless',
|
||||
slug: 'passwordless',
|
||||
description: 'The page to login a user with his passwordless device',
|
||||
},
|
||||
{
|
||||
name: 'Passwordless Create',
|
||||
slug: 'passwordless/create',
|
||||
description: 'The page to add a users passwordless device',
|
||||
},
|
||||
],
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user