yavsc/Yavsc/Views/OAuth/AuthorizeError.cshtml

20 lines
521 B
Plaintext

8 years ago
@using Microsoft.AspNet.Http
@using System
8 years ago
@using System.Security.Claims
@{
var error = Context.Items["oauth.Error"];
var errorDescription = Context.Items["oauth.ErrorDescription"];
var errorUri = Context.Items["oauth.ErrorUri"];
}
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Authorize Error</title>
</head>
<body>
<h1>Identification & Authentication server</h1>
8 years ago
<h2>OAuth2 Authorize Error</h2>
<p>Error: @error</p>
<p>@errorDescription</p>
</body>
</html>