yavsc/src/Yavsc.Org/Views/OAuth/AuthorizeDenied.cshtml

16 lines
390 B
Text
Raw Normal View History

2023-03-19 17:57:55 +00:00
@using System
2016-06-12 02:31:59 +02:00
@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>Authorization Denied</title>
</head>
<body>
<h1>Authorization denied</h1>
</body>
2023-03-19 17:57:55 +00:00
</html>