Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

fb:login-button custom?

Tags:

facebook

Is is possible to add parameters to fb:login-button in Facebook Connect?

I would change the text in a more clear way for my target/demographic, who are not so geeky.

like image 331
Francesco Avatar asked Sep 25 '10 02:09

Francesco


People also ask

How do I add a login button to Facebook?

#3: Set Up Facebook Login for Your WebsiteAt this point, you'll see Facebook Login among your website app options. Click the Set Up button to get started. Next, you'll fill in the information about how and where you'll use the app. You can add the Facebook Login feature on any app across multiple devices.

What is the log back in button on Facebook?

The Login button is a simple way to trigger the Facebook Login process on your website or web app. If someone hasn't logged into your app yet, they'll see this button, and clicking it will open a Login dialog, starting the login flow.


1 Answers

Yes it is

<h1>Defaults</h1> <fb:login-button onlogin="Log.info('onlogin callback')"> </fb:login-button>  <h1>autologoutlink</h1> <fb:login-button autologoutlink="true"                  onlogin="Log.info('onlogin callback')"> </fb:login-button>  <h1>Small with Custom Text</h1> <fb:login-button size="small"                  onlogin="Log.info('onlogin callback')">   Connect </fb:login-button>  <h1>Medium with Custom Text</h1> <fb:login-button size="medium"                  onlogin="Log.info('onlogin callback')">   Connect with Facebook </fb:login-button>  <h1>Large with Custom Text</h1> <fb:login-button size="large"                  onlogin="Log.info('onlogin callback')">   Login with Facebook </fb:login-button>  <h1>Extra Large with Custom Text</h1> <fb:login-button size="xlarge"                  onlogin="Log.info('onlogin callback')">   Find Friends </fb:login-button>  <h1>Favicon Only</h1> <fb:login-button size="icon"                  onlogin="Log.info('onlogin callback')"> </fb:login-button> 
like image 178
daaku Avatar answered Oct 07 '22 10:10

daaku