diff --git a/web/src/elements/wizard/FormWizardStep.ts b/web/src/elements/wizard/FormWizardStep.ts new file mode 100644 index 000000000..67f7903e4 --- /dev/null +++ b/web/src/elements/wizard/FormWizardStep.ts @@ -0,0 +1,36 @@ +import { t } from "@lingui/macro"; + +import { TemplateResult } from "lit"; + +import { Form } from "../forms/Form"; +import { WizardStep } from "./WizardStep"; + +export class FormWizardStep extends WizardStep { + _valid = true; + + isValid(): boolean { + return this._valid; + } + nextCallback = async () => { + const form = this.host.shadowRoot?.querySelector