I created a website and now want to allow users to login using facebook, as well as my login system. I have added the code below which gives me a login using facebook button, this then prompts me for username and password which i enter then when i click login, it disappears and my browser does not redirect anywhere. Where am i going wrong?
<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>
FB.init({
appId : 'xxxxxxxxxxxxxxx',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
</script>
<fb:login-button show-faces="false" width="200" max-rows="1"></fb:login-button>