@using Microsoft.Extensions.Primitives @model VerifyViewModel

Authorization

@if (string.IsNullOrEmpty(Model.UserCode) || !string.IsNullOrEmpty(Model.Error)) { @if (!string.IsNullOrEmpty(Model.Error) && !string.IsNullOrEmpty(Model.ErrorDescription)) {

An error occurred:
@Model.ErrorDescription (@Model.Error)

}

Enter the user code given by the client application:

} else {

Do you want to grant @Model.ApplicationName access to your data? (scopes requested: @Model.Scope)

Make sure that the code displayed on the device is @Model.UserCode.
If the two codes don't match, press "No" to reject the authorization demand.

@* Flow the request parameters so they can be received by the VerifyAccept/VerifyReject actions: *@ @foreach (var parameter in Context.Request.HasFormContentType ? (IEnumerable>) Context.Request.Form : Context.Request.Query) { } }