Hi, we use the Windows Server 2012 R2, and ADFS version is 3.0. I know that will can do some customizations against the login page, there two articles in the TechNet:
1. Customizing the AD FS Sign-in Pages
https://technet.microsoft.com/library/dn280950.aspx
2. Advanced Customization of AD FS Sign-in Pages
https://technet.microsoft.com/en-us/library/dn636121(v=ws.11).aspx
But the customization is really limit, We want to develop a deep-customized page to take place of the OOB login page.
The strategy is as below:
1. Create a new theme, export the theme, in the load.js, add JavaScript to redirect the login page to our own login page(we can control this page hence, it actually is another site).
2. In our login page, after user input username and password, we use js to post the credential to the adfs login page, then our login page redirect to the target system.
Is the method possible?
Currently I stuck in the js post stage, I cannot post the data successfully now.
Thanks.