Use this area to provide additional information.
8 |
--------------------------------------------------------------------------------
/src/RedisCacheExample/Views/Home/Contact.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | ViewData["Title"] = "Contact";
3 | }
4 |
7 | You do not have a local username/password for this site. Add a local
8 | account so you can log in without an external login.
9 |
10 |
11 |
34 | @RenderBody()
35 |
36 |
39 |
40 |
41 |
42 |
43 |
44 |
45 | @RenderSection("scripts", required: false)
46 |
47 |
48 |
--------------------------------------------------------------------------------
/src/RedisCacheExample/Views/Shared/_LoginPartial.cshtml:
--------------------------------------------------------------------------------
1 | @using System.Security.Claims
2 |
3 | @if (User.IsSignedIn())
4 | {
5 |