0
hrod761 created
.NET Core 3.1 Angular v9.0.1
Hello Team,
Is is possible to have custom login pages per tenant? if so can you give me some pointers.
Thanks,
Markdown is supported
Copy & paste or drag & drop images (max 30 MB per image)
3 Answer(s)
-
0
Hi @hrod761
At the moment, this is not possible. You need to implement it yourself.
Markdown is supportedCopy & paste or drag & drop images (max 30 MB per image) -
0
@hrod761
you could consider using this to hide/show elements on your page depending on the Tenant:
*ngIf="appSession.tenancyName.toLowerCase() == 'xxx'Markdown is supportedCopy & paste or drag & drop images (max 30 MB per image) -
0
Another approach would be using a custom css file for each tenant. For example
tenancyname-login.cssand customize the page using this style file.Markdown is supportedCopy & paste or drag & drop images (max 30 MB per image)