${this.oidcConsentState.appName}
${this.getOidcAppHost(this.oidcConsentState.appUrl)}
${this.oidcConsentState.requestedScopes.map((scopeArg) => html`
${this.getOidcScopeDescription(scopeArg)}
`)}
${this.oidcConsentError ? html`
${this.oidcConsentError}
` : null}
{
this.redirectOidcError('access_denied');
}}
>
Cancel
{
const idpState = await IdpState.getSingletonInstance();
const jwt = await idpState.idpClient.getJwt();
if (!jwt) {
this.redirectOidcError('login_required');
return;
}
await this.completeOidcAuthorization(jwt, true);
}}
>
Allow and continue