As we use the auth_external module to use our own authentication procedure, we have a working solution. But is not so nice.
I have unregistered the normal member authentication process with
Authenticator::unregister('MemberAuthenticator');
Authenticator::register_authenticator('ExternalAuthenticator');
both in mysite/_config.php and saphhire/_config.php
But when I use the login form ($LoginForm) in template files (layout/myauth.ss), I still get the layout of the normal login form with Email and Password, what I cannot use.
I tried to use $ExternalLoginForm, but this returns empty.
Anybody has an idea about this?
Walter