nicolasochem
nicolasochem

Reputation: 467

Openid-selector and classical website registration

I want to implement on a to-be-released website a OpenID sign-up form which looks like a classical form.

I want it to have the following fields :

Ideally, it should not even bear any mention to OpenID.

I do not want to be an OpenID provider myself, but use an external one.

Do you know any OpenID-provider which lets me embed a form in my website for free ?

Remark : I am aware of openID-selector. In fact, I want to use it as the primary ways of signing up. However I need an alternate "normal" sign-up form because this is what many users expect. And I'd prefer to have all the signup/login process outsourced to openid providers.

Upvotes: 0

Views: 181

Answers (1)

Andrew Arnott
Andrew Arnott

Reputation: 81801

You want an OpenID Provider to provide you with the content of an iframe that will capture the user's credentials and other personal information? You'll never find it. All the reasonable-to-large sized OpenID Providers in fact add "frame busting" code to their pages to prevent scenarios like this because it results in poor security for the users.

That said, you should check out http://openidux.dotnetopenauth.net/ which is a demonstration of how to log users in, including new users, in a very pain-free way, using OpenID without telling the users that. You can try the scenario of a new user who doesn't yet have a Google account but wants to create one.

Upvotes: 1

Related Questions