{#if loading}
Loading...
{:else if error}
Authorization Error
{error}
navigate('/login')}> Return to Login
{:else if consentData}
{#if consentData.logo_uri}
{/if}
{consentData.client_name || 'Application'}
wants to access your account
{#if consentData.client_uri}
{consentData.client_uri}
{/if}
Signing in as:
{consentData.did}
Permissions Requested
{#each Object.entries(scopeGroups) as [category, scopes]}
{category}
{#each scopes as scope}
handleScopeToggle(scope.scope)} />
{scope.display_name}
{scope.description}
{#if scope.required}
Required
{/if}
{/each}
{/each}
Remember my choice for this application
Deny
{submitting ? 'Authorizing...' : 'Authorize'}
{/if}