session service, username, password form

This commit is contained in:
Max Peintner
2023-05-16 17:34:52 +02:00
parent f149f1aebc
commit 8a190e28c6
20 changed files with 395 additions and 133 deletions

View File

@@ -1,10 +1,11 @@
"use client";
import { setTheme, LabelPolicyColors } from "#/utils/colors";
import { BrandingSettings } from "@zitadel/server";
import { setTheme } from "#/utils/colors";
import { useEffect } from "react";
type Props = {
branding: LabelPolicyColors | undefined;
branding: Partial<BrandingSettings> | undefined;
children: React.ReactNode;
};