import { Form, FormGroup, Select, SelectOption, Switch, TextInput, } from "@patternfly/react-core"; import { useTranslation } from "react-i18next"; import React from "react"; import { HelpItem } from "../components/help-enabler/HelpItem"; export const KerberosSettingsRequired = () => { const { t } = useTranslation("user-federation"); const helpText = useTranslation("user-federation-help").t; return ( <> {/* Required settings */}
} fieldId="kc-console-display-name" isRequired > } fieldId="kc-kerberos-realm" isRequired > } fieldId="kc-server-principal" isRequired > } fieldId="kc-key-tab" isRequired > } fieldId="kc-debug" hasNoPaddingTop > undefined as any} label={t("common:on")} labelOff={t("common:off")} /> } fieldId="kc-allow-password-authentication" hasNoPaddingTop > undefined as any} label={t("common:on")} labelOff={t("common:off")} /> } fieldId="kc-edit-mode" > } fieldId="kc-update-first-login" hasNoPaddingTop > undefined as any} label={t("common:on")} labelOff={t("common:off")} />
); };