views:

122

answers:

2

Is there an easy way to implement OpenID login "helper buttons" similar to the buttons on the stackoverflow and uservoice login pages if you're already using a library like DotNetOpenId? It looks like RPX solves half of the problem, but it would require re-implementing the login code to use their methods.

A: 

Stackoverflow uses ID Selector: https://www.idselector.com/

Marwan Aouida
I don't think StackOverflow uses idselector. Just look at them. They don't look anything alike.
Andrew Arnott
+3  A: 

There are a couple of open-source alternatives as well, which both depend on jQuery:

openid-selector is an earlier version.

openid-realselector is a rewrite that is more jQuery-like and better-looking but less styleable.

Both are entirely JavaScript, so they're independent of your server-side choices.

adrian
Thanks. This is exactly what I was looking for.
jerhinesmith