I would like to as how can we have the login similar to the stackoverflow openid using drupal 7? In stackoverflow, we have various login options like facebook, google, etc, the image is show to choose various accounts. But I tried for drupal 7, only the 'Log in using OpenID' is shown beneath the login options. How do I show the multiple account options besides 'Log in using OpenID'.
Asked
Active
Viewed 2,915 times
2 Answers
6
Use the Janrain/RPX Module.

Ethan Cabiac
- 4,943
- 20
- 36
-
Thanks for the advice. Interesting service seems to be Janrain, it's paid but if works as it says then it's a very good price for commercial sites. Thanks a lot! – Beto Aveiga May 14 '12 at 05:05
1
- Create some HTML that shows the OpenID providers that you want to mention explicitly.
- Create some JavaScript that fills in the text input field when clicking on the OpenID provider in the HTML.
- Wrap it into a Drupal module.

Oswald
- 31,254
- 3
- 43
- 68
-
Can you elaborate a little on this process? Or maybe link to a guide/tutorial? I want to do this, but I don't want to muck around with hacking drupal core.. – snapfractalpop Sep 13 '12 at 14:10
-
If you want to dig into Drupal module development, go to the [Module developer's guide](http://drupal.org/developing/modules). If you don't, use the [OpenID Selector](http://drupal.org/project/openid_selector) module (which uses the same JavaScript Library that StackExchange uses) or the [Janrain Engage](http://drupal.org/project/rpx) module that Ethan mentioned (which uses the Janrain Engage service to proxy authentication requests). – Oswald Sep 13 '12 at 17:54