Stability fixes: plugin-scoped contexts for owned pages, absent-href guard, checked locale mounts
CI / full-gate (push) Successful in 2m37s

This commit is contained in:
2026-08-03 23:51:40 +02:00
parent 2b20497785
commit be3bc2bdbb
28 changed files with 176 additions and 58 deletions
+2 -2
View File
@@ -25,14 +25,14 @@
<span class="brand-name"><%= brand %></span>
</div>
<%- include("partials/auth-card", {
action: "/oauth2/consent",
action: localeHref("/oauth2/consent"),
body,
method: "post",
sub: t("consent.sub", { client: consent.client }),
title: t("consent.title", { client: consent.client }),
}) %>
<% if (consent.account) { %>
<form class="auth-alt" method="post" action="/logout">
<form class="auth-alt" method="post" action="<%= localeHref("/logout") %>">
<input type="hidden" name="<%= csrfField %>" value="<%= csrfToken %>">
<%= t("consent.notYou") %> <button type="submit"><%= t("shell.signOut") %></button>
</form>