diff --git a/authentik/admin/templates/generic/form.html b/authentik/admin/templates/generic/form.html index d7208c69f..20b78908f 100644 --- a/authentik/admin/templates/generic/form.html +++ b/authentik/admin/templates/generic/form.html @@ -27,7 +27,9 @@ {% endblock %} diff --git a/authentik/core/templates/base/page.html b/authentik/core/templates/base/page.html deleted file mode 100644 index fa10451ce..000000000 --- a/authentik/core/templates/base/page.html +++ /dev/null @@ -1,12 +0,0 @@ -{% extends "base/skeleton.html" %} - -{% load i18n %} - -{% block body %} - -
- {% trans 'Skip to content' %} - {% block page_content %} - {% endblock %} -
-{% endblock %} diff --git a/authentik/core/templates/error/generic.html b/authentik/core/templates/error/generic.html index 17ba3a5a2..ca1d53de5 100644 --- a/authentik/core/templates/error/generic.html +++ b/authentik/core/templates/error/generic.html @@ -1,4 +1,4 @@ -{% extends 'base/page.html' %} +{% extends 'base/skeleton.html' %} {% load i18n %} {% load authentik_utils %} diff --git a/authentik/stages/password/templates/stages/password/user-settings-card.html b/authentik/stages/password/templates/stages/password/user-settings-card.html index 48fbfc72a..1011c45a9 100644 --- a/authentik/stages/password/templates/stages/password/user-settings-card.html +++ b/authentik/stages/password/templates/stages/password/user-settings-card.html @@ -1,9 +1,6 @@ -{% extends "base/page.html" %} - {% load i18n %} {% load authentik_utils %} -{% block body %}
{% trans 'Reset your password' %} @@ -14,4 +11,3 @@
-{% endblock %} diff --git a/web/src/elements/buttons/SpinnerButton.ts b/web/src/elements/buttons/SpinnerButton.ts index 5213e3e75..dc61ab503 100644 --- a/web/src/elements/buttons/SpinnerButton.ts +++ b/web/src/elements/buttons/SpinnerButton.ts @@ -59,9 +59,9 @@ export class SpinnerButton extends LitElement { return; } if (this.form) { - // Because safari we can't just extend HTMLButtonElement, hence I have to implement - // these attributes by myself here, sigh... - document.querySelector(`#${this.form}`)?.submit(); + // Since the form= attribute is only used within a modal button, + // we can assume the form is always two levels up + this.parentElement?.parentElement?.querySelector < HTMLFormElement>(`#${this.form}`)?.dispatchEvent(new Event("submit")); } this.setLoading(); }