I have a custom form to log in. I would like to put the button on that form.
I tried this code, but it does only displays in text "connect with facebook" without an image and it is not clickable.
$form['fb_connect_button'] = array(
'#type' => 'markup',
'#value' => 'Connect with Facebook',
'#prefix' => '',
'#suffix' => '',
);
Can someone hel p me to properly display the button on that form?
Thanks !