Added sign up button and improved logout flow.

Also added proper link to profile management.
This commit is contained in:
2021-07-12 03:06:13 -05:00
parent 9e55b459fc
commit c597d65256
11 changed files with 127 additions and 27 deletions

View File

@@ -37,9 +37,9 @@ namespace MultiShop
.AddApiAuthorization<ApplicationUser, ApplicationDbContext>(
options => {
options.Clients.AddIdentityServerSPA("MultiShop", spa => {
spa.WithRedirectUri("/authentication/silent-login-callback");
spa.WithRedirectUri("/authentication/silent-login-callback.html");
spa.WithRedirectUri("/authentication/login-callback");
spa.WithRedirectUri("/authentication/logout-callback");
spa.WithLogoutRedirectUri("/authentication/logout-callback");
});
});