". t('Login') .'
Enter your %site username and password.
', array('%site' => variable_get('site_name', 'Drupal')))) . (!isset($_POST['securesite_request_form']) ? theme('status_messages') : '') .'Enter your username and your e-mail address.
'))) { if ($securesite_enabled == SECURESITE_FORM) { // Only output the HR if also outputting the Login form $output = "'. t('Reload the page to try logging in again.') ."
\n"; } return $output; } /** * Print HTML dialog page for securesite */ function _securesite_dialog_page($content) { // Display themed dialog $theme_path = drupal_get_path('theme', variable_get('theme_default', 'garland')); $dialog_file = '/securesite-dialog.tpl.php'; if (file_exists($theme_path . $dialog_file)) { include_once($theme_path . $dialog_file); } else { include_once(drupal_get_path('module', 'securesite') . $dialog_file); } }