yavsc/Yavsc/Views/OAuth/Authorize.cshtml

29 lines
959 B
Plaintext

8 years ago
@using Microsoft.AspNet.Http.Authentication
8 years ago
@using Microsoft.AspNet.WebUtilities
8 years ago
@using System.Security.Claims
@model Yavsc.Models.Auth.AuthorisationView
8 years ago
@{
8 years ago
ViewBag.Title = @SR["Authorize"];
8 years ago
}
8 years ago
<h1>Authorization Server</h1>
<h2>OAuth2 Authorize</h2>
<form method="POST">
8 years ago
<p>Hello, @User.Identity.Name</p>
<p>@Model.Message</p>
<p>A third party application want to do the following on your behalf:</p>
<ul>
@if (Model.Scopes!=null) {
@foreach (var scope in Model.Scopes)
8 years ago
{
8 years ago
<li><em>@scope.Id</em>: @scope.Description</li>
}
}
</ul>
<p>
<input type="submit" class="btn btn-lg btn-success" name="submit.Grant" value="Grant" />
<input type="submit" class="btn btn-lg btn-danger" name="submit.Deny" value="Deny" />
<input type="submit" class="btn btn-lg btn-success" name="submit.Login" value="Sign in as different user" />
</p>
</form>