Does your theme support switching lang at login page?
(without prior logging) (Angular ver)
foe example in URL add sth like lang=DE(german)
Iet me know how to do that if possible
https://preview.keenthemes.com/metronic8/angular/demo1/auth/login?lang=de
Hi,
The language dropdown is available on the login page. You have to customize the login page to add the language dropdown.
demo1/src/app/modules/auth/components/login/login.component.html
Then use the function above to set the language.
Thanks
Hi,
By default, the language selector is not available on the login page.
You may refer to this file:
demo1/src/app/app.component.ts
translationService: TranslationService
this.translationService.setLanguage("de");
Thanks, but how to let user choice at login page?