apply forms stylesheet to form pages

Summary: Ref T3071

Reviewers: #testers, kuba-orlik

Reviewed By: #testers, kuba-orlik

Subscribers: jenkins-user

Maniphest Tasks: T3071

Differential Revision: https://hub.sealcode.org/D1631
This commit is contained in:
PrzZiomek2 2025-10-30 19:43:01 +01:00
parent 89302cf363
commit 7fcde70b4e
2 changed files with 2 additions and 0 deletions

View File

@ -69,6 +69,7 @@ export default new (class LoginForm extends Form<typeof fields, void> {
ctx,
title: "Form",
description: "",
css_clumps: ["admin-forms"],
body: super.render(ctx, data, show_field_errors) as Promise<string>,
});
}

View File

@ -117,6 +117,7 @@ export default new (class SignInForm extends Form<typeof fields, void> {
ctx,
title: "SignIn",
description: "",
css_clumps: ["admin-forms"],
body: tempstream`${await super.render(ctx, data, show_field_errors)}`,
});
}