summaryrefslogtreecommitdiffstats
path: root/samples/OAuth2ProtectedWebApi/Views/User/Authorize.cshtml
diff options
context:
space:
mode:
Diffstat (limited to 'samples/OAuth2ProtectedWebApi/Views/User/Authorize.cshtml')
-rw-r--r--samples/OAuth2ProtectedWebApi/Views/User/Authorize.cshtml1
1 files changed, 1 insertions, 0 deletions
diff --git a/samples/OAuth2ProtectedWebApi/Views/User/Authorize.cshtml b/samples/OAuth2ProtectedWebApi/Views/User/Authorize.cshtml
index 0664741..930788e 100644
--- a/samples/OAuth2ProtectedWebApi/Views/User/Authorize.cshtml
+++ b/samples/OAuth2ProtectedWebApi/Views/User/Authorize.cshtml
@@ -8,6 +8,7 @@
@using (Html.BeginForm("Respond", "User", FormMethod.Post)) {
@AntiForgery.GetHtml()
@Html.Hidden("request", this.ViewData["request"])
+ <p>Are you sure you want to allow the client to access your data, with this scope: <b>@string.Join(" ", (IEnumerable<string>)ViewData["Scope"])</b></p>
<input type="submit" name="approval" value="true" />
<input type="submit" name="approval" value="false" />
} \ No newline at end of file