here is my code?
FB.login(function(response){ console.log(response) if(response.session){ connectFacebook(); } },{perms:'email,read_stream,publish_stream,offline_access'});
I need to allow the user to use my application.
The problem is displaying FB.login in a popup style, but I need it to display in page style, like this:

How can i do this? How to change the code?
Thank you!
source share