login works, claims können angezeigt werden
This commit is contained in:
15
Watcher/Views/Auth/Info.cshtml
Normal file
15
Watcher/Views/Auth/Info.cshtml
Normal file
@@ -0,0 +1,15 @@
|
||||
@{
|
||||
ViewData["Title"] = "Account Info";
|
||||
}
|
||||
|
||||
<h2>Account-Informationen</h2>
|
||||
|
||||
<p><strong>Benutzername:</strong> @ViewBag.Name</p>
|
||||
|
||||
<h4>Claims:</h4>
|
||||
<ul>
|
||||
@foreach (var claim in ViewBag.Claims)
|
||||
{
|
||||
<li><strong>@claim.Type:</strong> @claim.Value</li>
|
||||
}
|
||||
</ul>
|
Reference in New Issue
Block a user