where to get facebook login button

facebook-javascript-sdk

Solution

http://developers.facebook.com/docs/reference/plugins/login/

here you can generate a button ... not the additional attributes and use them to get different sizes f.e.

sized buttons: small, medium, large, xlarge (default: medium).

Problem

I have implemented facebook authentication for my website with the facebook-omniauth gem. I am simply looking for a "Login From Facebook" button. It seems like facebook only advocates using the login button through the XFBML JS, or through an iframe. I found that facebook does have various images available on their website: https://www.facebook.com/images/facebook_logo.gif https://www.facebook.com/images/fbconnect/login-buttons/connect_light_medium_short.gif But how can I get access to all of their available images?? (I know I can get a login from facebook image from a 3rd party, but I wanted to get one straight from facebook - just didn't think fb would make it so hard to do without using their javascript libraries or iframes)

Original source