9 |
10 | Logout
11 | You are now logged out
12 |
13 |
14 | @if (Model.PostLogoutRedirectUri != null)
15 | {
16 |
17 | Click
here to return to the
18 |
@Model.ClientName application.
19 |
20 | }
21 |
22 | @if (Model.SignOutIframeUrl != null)
23 | {
24 |
25 | }
26 |
27 |
28 | @section scripts
29 | {
30 | @if (Model.AutomaticRedirectAfterSignOut)
31 | {
32 |
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/IdentityServer/Course.IdentityServer/Views/Account/Logout.cshtml:
--------------------------------------------------------------------------------
1 | @model LogoutViewModel
2 |
3 |
4 |
5 |
Logout
6 |
Would you like to logut of IdentityServer?
7 |
8 |
9 |
15 |
16 |
--------------------------------------------------------------------------------
/IdentityServer/Course.IdentityServer/Views/Device/Success.cshtml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
Success
5 |
You have successfully authorized the device
6 |
7 |
8 |
--------------------------------------------------------------------------------
/IdentityServer/Course.IdentityServer/Views/Device/UserCodeCapture.cshtml:
--------------------------------------------------------------------------------
1 | @model string
2 |
3 |
4 |
5 |
User Code
6 |
Please enter the code displayed on your device.
7 |
8 |
9 |
10 |
11 |
23 |
24 |
--------------------------------------------------------------------------------
/IdentityServer/Course.IdentityServer/Views/Home/Index.cshtml:
--------------------------------------------------------------------------------
1 | @using System.Diagnostics
2 |
3 | @{
4 | var version = FileVersionInfo.GetVersionInfo(typeof(IdentityServer4.Hosting.IdentityServerMiddleware).Assembly.Location).ProductVersion.Split('+').First();
5 | }
6 |
7 |
4 |
5 |
You are now being returned to the application
6 |
Once complete, you may close this tab.
7 |
8 |
9 |
10 |