You are here

function securesite_user_pass in Secure Site 8

Same name and namespace in other branches
  1. 6.2 securesite.inc \securesite_user_pass()
  2. 7.2 securesite.inc \securesite_user_pass()

We use our own version of the password reset form for theming.

See also

user_pass_validate()

user_pass_submit()

3 string references to 'securesite_user_pass'
SecuresiteManager::dialogPage in src/SecuresiteManager.php
Display fall-back HTML for HTTP authentication dialogs. Safari will not load this. Opera will not load this after log-out unless the page has been reloaded and the authentication dialog has been displayed twice.
SecuresiteManager::showDialog in src/SecuresiteManager.php
securesite_form_alter in ./securesite.module
Implements hook_form_alter().

File

./securesite.module, line 246
Enables HTTP authentication or an HTML form to restrict site access.

Code

function securesite_user_pass($form, &$form_state) {
  return $form;
}