I want to remove the ability to log in with anything other than our single sign on. How do I remove the form containing the 2 labels, 2 text fields and button to get my log in screen looking like this:
Note: I don't want to just simply hide the form element with css, I want to prevent it from even being a part of the markup.
Remove form Element From Umbraco Login Screen
Currently my log on screen looks like this:
I want to remove the ability to log in with anything other than our single sign on. How do I remove the form containing the 2 labels, 2 text fields and button to get my log in screen looking like this:
Note: I don't want to just simply hide the form element with css, I want to prevent it from even being a part of the markup.
Hi David,
The only way I cant think of would be to edit
/umbraco/views/common/dialogs/login.html
which is the template for the login view.However this would be something you would need to do after every update you apply to Umbraco.
Matt
The suggestion of matthew can work but like he said this will be overwritten by each upgrade.
So for future maintenance it's easier to create an angular interceptor that catches the call to the login view and replace it with your own view.
I wrote about this in a skrift article : https://skrift.io/articles/archive/changing-backoffice-functionality-without-changing-core-code/
This way you don't have to change umbraco core files.
Dave
This really helped. Thanks!
is working on a reply...