Restyle the UI of Abp.IdentityServer (identity server 4)

Viewed 1304

I have created Tiered solution with Angular front-end and separated IdentityServer using abp.io framework, I have purchased a material theme for my application which I already integrated in my angular app, but IdentityServer still uses it's default UI provided by Abp, I didn't find any promising article showing the way to change it's layout design.

Can anyone suggest anything?

2 Answers

In addition to @gterdem answer and thanks to @KishoreSahasranaman I realized that..

This needs to be added to the Login.cshtml page so it renders fine (and works too!)

@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
@addTagHelper *, Volo.Abp.AspNetCore.Mvc.UI
@addTagHelper *, Volo.Abp.AspNetCore.Mvc.UI.Bootstrap
@addTagHelper *, Volo.Abp.AspNetCore.Mvc.UI.Bundling

The documentation is kind of misleading since it sends you to do angular work when this is using IS4 on the backend

Related