@using Microsoft.AspNet.Http.Authentication @using Microsoft.AspNet.WebUtilities @using System.Security.Claims @using Microsoft.Extensions.Primitives @model Yavsc.Models.Auth.AuthorisationView @{ ViewBag.Title = @SR["Authorize"]; }

Authorization Server

OAuth2 Authorize

Hello, @User.Identity.Name

@Model.Message

A third party application want to do the following on your behalf:

@if (Model.QueryStringComponents!=null) { @foreach (var key in Model.QueryStringComponents.Keys) { @Html.Hidden(key,Model.QueryStringComponents[key]) } }