yavsc/src/Yavsc.Org/Views/OAuth/AuthorizeDenied.cshtml
Paul Schneider 40e8e08690 reorg
2026-02-28 21:17:54 +00:00

16 lines
390 B
Text

@using System
@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>
</html>