Requirelogin
From Facebook Developer Wiki
You can add the attribute requirelogin to links and forms to ensure that the user has authorized your application before accessing the contents of the link or form.
A user who has not authorized your application and clicks on a link or submits a form with requirelogin=1 will see a dialog prompting the user to authorize your application by redirecting the user to the Facebook login page. After the user logs in, the user is then redirected back to the original canvas page.
A user who has already authorized your application (has a valid session) can follow the link or submit the form normally.
Examples
<a href="http://www.somewheretogo.com/loggedinusersonly.php" requirelogin=1>You must be logged in to follow me</a>
<form action="http://www.somewheretogo.com/loggedinusersonly.php" requirelogin=1>
... your regular form fields, just be sure not to name any field 'submit' ...
</form>
