Reputation: 33
Is it possible to write a custom username/password validator which will be used in the adfs signin method (on the formssignin.aspx page)?
And if so, are there any examples?
Upvotes: 2
Views: 789
Reputation: 46720
This article customizing-the-ad-fs-2-0-sign-in-web-pages shows how to add two factor authentication.
This article modifying-and-securing-the-adfs-2-web-application shows how to create a VS project from the ADFS files on your dev. PC.
ADFS has a Master page and css files as well depending on how far you want to go.
Also, there's some info. here customizing-the-ad-fs-2-0-sign-in-web-pages about other changes you may care to make e.g.
Hopefully, that will give you some direction.
ADFS out the box can only authenticate against AD. If you want a custom authentication mechanism, the classic solution is to create a custom STS e.g. Identity Server
Upvotes: 3