diff --git a/setup_two_factor.inc b/setup_two_factor.inc
index 55a8614..3b617b0 100644
--- a/setup_two_factor.inc
+++ b/setup_two_factor.inc
@@ -60,7 +60,7 @@ function two_factor_authentication_form($form, $form_state) {
       ' . $register . '
       <div class="tfa-top-left"><h3>Setup Two-Factor</h3></div>
       <div class="tfa-top-center-activated"> Active Method - ' . drupal_strtoupper($users_active_method_name) . '</div>
-      <div class="tfa-top-right"><a href="#"> Need Support?</a></div>
+      <div class="tfa-top-right">' . l(t('Need Support?'), 'admin/config/mo2f/mo2f_tfa') . '</div>
     </div>
     <div class="tfa-info">Select any Two-Factor of your choice below and complete its setup. <a href="how-it-works">Click here to see How To Setup ?</a></div>';
 
diff --git a/tfa_login_customer_setup.inc b/tfa_login_customer_setup.inc
index 1470161..747a9ac 100644
--- a/tfa_login_customer_setup.inc
+++ b/tfa_login_customer_setup.inc
@@ -13,7 +13,11 @@ function tfa_user_profile($form, &$form_state) {
   // TWO_FACTOR_AUTHENTICATION_MO_2_FACTOR_OTP_DELIVERED_SUCCESS or
   // TWO_FACTOR_AUTHENTICATION_MO_2_FACTOR_OTP_DELIVERED_FAILURE.
   global $user;
-
+  $users_active_methods = array(
+    TWO_FACTOR_AUTHENTICATION_EMAIL_VERIFICATION => t('Email Verification'),
+    TWO_FACTOR_AUTHENTICATION_QR_CODE_AUTHENTICATION => t('QR Code Authentication'),
+    TWO_FACTOR_AUTHENTICATION_GOOGLE_AUTHENTICATOR => t('Google Authenticator')
+  );
   $user_obj = user_load($user->uid);
   if (!empty($user_obj->field_registration_status[LANGUAGE_NONE][0]['value']) && in_array(
         $user_obj->field_registration_status[LANGUAGE_NONE][0]['value'], array(
@@ -95,6 +99,13 @@ function tfa_user_profile($form, &$form_state) {
       'value' => !empty($user_obj->field_miniorange_email[LANGUAGE_NONE][0]['value']) ? $user_obj->field_miniorange_email[LANGUAGE_NONE][0]['value'] : '',
     );
 
+    $active_method_key = $user_obj->field_active_methods[LANGUAGE_NONE][0]['value'];
+    $users_active_method_name = $users_active_methods[$active_method_key];
+    $rows[] = array(
+      'title' => '2 Factor Registered Email',
+      'value' => !empty($user_obj->field_active_methods[LANGUAGE_NONE][0]['value']) ? $users_active_method_name : '',
+    );
+
     if (in_array('authenticated user', $user_obj->roles)) {
       $rows[] = array(
         'title' => 'Customer ID',
@@ -108,13 +119,17 @@ function tfa_user_profile($form, &$form_state) {
         'title' => 'Token Key',
         'value' => variable_get('two_factor_authentication_mo2f_customer_token'),
       );
+      $rows[] = array(
+        'title' => 'App Secret',
+        'value' => variable_get('two_factor_authentication_mo2f_customer_appSecret'),
+      );
     }
 
     $table = theme('table', array('header' => $header, 'rows' => $rows));
 
     $form['my_info'] = array(
       '#type' => 'item',
-      '#markup' => t('Thank you for registering with miniOrange.'),
+      '#markup' => t('<p>Thank you for registering with miniOrange.</p><h4>Your Profile</h4>'),
       '#suffix' => $table,
     );
 
@@ -708,6 +723,7 @@ function tfa_user_already_registered_submit($form, &$form_state) {
 function set_session() {
 
   $_SESSION['check_set'] = "set";
+  drupal_set_message('Please enter your registered email and password.', 'status');
   drupal_goto('admin/config/mo2f/mo2f_tfa');
 }
 
@@ -1024,10 +1040,10 @@ function mo2f_fetch_customer(&$user, $email, $password) {
  * Function to retrieve data based related to user saved methods.
  */
 function mo2f_save_retrived_data(&$user, $customer_key, $exits = NULL) {
-
   variable_set('two_factor_authentication_mo2f_customerKey', $customer_key['id']);
   variable_set('two_factor_authentication_mo2f_api_key', $customer_key['apiKey']);
   variable_set('two_factor_authentication_mo2f_customer_token', $customer_key['token']);
+  variable_set('two_factor_authentication_mo2f_customer_appSecret', $customer_key['appSecret']);
   $user->field_active_methods[LANGUAGE_NONE][0]['value'] = array(TWO_FACTOR_AUTHENTICATION_EMAIL_VERIFICATION);
   $user->field_configured_methods[LANGUAGE_NONE][0]['value'] = array(TWO_FACTOR_AUTHENTICATION_EMAIL_VERIFICATION);
   $user->field_registration_status[LANGUAGE_NONE][0]['value'] = TWO_FACTOR_AUTHENTICATION_MO_2_FACTOR_INITIALIZE_MOBILE_REGISTRATION;
diff --git a/two_factor_authentication.module b/two_factor_authentication.module
index eec26fc..5865fc0 100644
--- a/two_factor_authentication.module
+++ b/two_factor_authentication.module
@@ -54,7 +54,7 @@ function two_factor_authentication_menu() {
   );
 
   $items['admin/config/mo2f/mo2f_tfa/user-profile'] = array(
-    'title' => 'Account Setup',
+    'title' => 'User Profile',
     'type' => MENU_DEFAULT_LOCAL_TASK,
   );
 
