17 lines
505 B
Plaintext
17 lines
505 B
Plaintext
<%#
|
|
OAuth2 client register page (todo §6): the client-form body captured into the app shell.
|
|
%><%
|
|
const nav = include("partials/nav-tree", { nodes: model.nav });
|
|
const body = include("partials/client-form-body", { error: model.error, form: model.form });
|
|
-%>
|
|
<%- include("partials/shell", {
|
|
body,
|
|
brand: model.shell.brand,
|
|
breadcrumbs: model.shell.breadcrumbs,
|
|
csrfToken: model.shell.csrfToken,
|
|
nav,
|
|
theme: model.shell.theme,
|
|
title: model.shell.title,
|
|
user: model.shell.user,
|
|
}) %>
|