', $txt['authentication_reminder'], '

', $txt['password_reminder_desc'], '

', $txt['user_email'], ':

'; } /** * The page to pick an option - secret question/answer (if set) or email */ function template_reminder_pick() { global $context, $txt, $scripturl; echo '

', $txt['authentication_reminder'], '

', $txt['authentication_options'], ':

'; } /** * Just a simple "We sent you an email. Click the link in it to continue." message */ function template_sent() { global $context; echo '

' . $context['page_title'] . '

' . $context['description'] . '

'; } /** * Template for setting the new password */ function template_set_password() { global $context, $txt, $scripturl, $modSettings; echo '

', $context['page_title'], '

', $txt['choose_pass'], ':
', $txt['verify_pass'], ':

'; } /** * The page that asks a user to answer their secret question */ function template_ask() { global $context, $txt, $scripturl, $modSettings; echo '

', $txt['authentication_reminder'], '

', $txt['enter_new_password'], '

', $txt['secret_question'], ':
', $context['secret_question'], '
', $txt['secret_answer'], ':
', $txt['choose_pass'], ':
', $txt['verify_pass'], ':
'; } ?>