summaryrefslogtreecommitdiffstats
path: root/samples/OAuth2ProtectedWebApi/Views/Shared/Error.cshtml
blob: 54c5886aa686a2610e4607a73f143fce4718b2e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@{
    Layout = null;
}

<!DOCTYPE html>
<html>
<head>
    <meta name="viewport" content="width=device-width" />
    <title>Error</title>
</head>
<body>
    <h2>
        Sorry, an error occurred while processing your request.
    </h2>
</body>
</html>