diff --git a/includes/fboauth.pages.inc b/includes/fboauth.pages.inc
index c28d13f..cb54c1d 100644
--- a/includes/fboauth.pages.inc
+++ b/includes/fboauth.pages.inc
@@ -168,11 +168,18 @@ function fboauth_user_form($account) {
  */
 function theme_fboauth_user_info($variables) {
   $account = $variables['account'];
-
-  $output = '';
-  $output .= '<p>' . t('Your account is current connected with Facebook. Currently this site has access to the following information from Facebook.') . '</p>';
-  $output .= theme('item_list', array('items' => array('basic' => t('Your basic information (Name, Gender, Picture, etc.)'))) + fboauth_user_connect_permissions());
-  $output .= '<p>' . t('You may disconnect your account from Facebook at any time by using the Deauthorize option below. If deauthorized, you will no longer be able to use Facebook to log into this account and must use a normal password
-  $output .= fboauth_action_display('deauth');
+  $fbid = fboauth_fbid_load();
+  if ($fbid !== FALSE) {
+    $output = '';
+    $output .= '<p>' . t('Your account is current connected with Facebook. Currently this site has access to the following information from Facebook.') . '</p>';
+    $output .= theme('item_list', array('items' => array('basic' => t('Your basic information (Name, Gender, Picture, etc.)'))) + fboauth_user_connect_permissions());
+    $output .= '<p>' . t('You may disconnect your account from Facebook at any time by using the Deauthorize option below. If deauthorized, you will no longer be able to use Facebook to log into this account and must use a normal passwo
+    $output .= fboauth_action_display('deauth');
+  }
+  else {
+    $output = '';
+    $output .= '<p>' . t('Your account is not currently connected with Facebook. To connect this account to Facebook, click on the link below.') . '</p>';
+    $output .= fboauth_action_display('connect');
+  }
   return $output;
 }
