Discuss this help topic in SecureBlackbox Forum
Set custom login page for IdP
All supported SP configurations should be loaded into TElSAMLServiceProviderInfo instances and added to the known SPs list using TElSAMLIdentityProvider.AddServiceProvider() method. TElSAMLIdentityProvider.AuthFormTemplate property is used to change default login page. Default form is described using the following template:
Where "%URL%" is replaced with the form destination URL in runtime.
<html><head><title>EldoS SAML Login</title></head>
<body><center><h1>Enter login credentials</h2><form action="%URL%" method="post">
Login:<br/><input type="text" name="login"/><br/>
Password:<br/><input type="password" name="password"/><br/>
<input type="submit" value="Login"/>
</form></center></body></html>