'; // Did they make a mistake last time? if (isset($context['login_error'])) echo ' '; // Or perhaps there's some special description for this time? if (isset($context['description'])) echo ' '; // Now just get the basic information - username, password, etc. echo ' '; // If they have deleted their account, give them a chance to change their mind. if (isset($context['login_show_undelete'])) echo ' '; echo '
', $txt[34], '
', $context['login_error'], '
', $context['description'], '

', $txt[35], ':
', $txt[36], ':
', $txt[497], ':
', $txt[508], ':
', $txt['undelete_account'], ':
', $txt[315], '

'; // Focus on the correct input - username or password. echo ' '; } // Tell a guest to get lost or login! function template_kick_guest() { global $context, $settings, $options, $scripturl, $modSettings, $txt; // This isn't that much... just like normal login but with a message at the top. echo '
'; // Show the message or default message. echo ' '; // And now the login information. echo '
', $txt[633], '
', empty($context['kick_message']) ? $txt[634] : $context['kick_message'], '
', $txt[635], ' ', $txt[636], ' ', $txt[637], '
', $txt[34], '
', $txt[35], ':
', $txt[36], ':
', $txt[497], ':
', $txt[508], ':
', $txt[315], '

'; // Do the focus thing... echo ' '; } // This is for maintenance mode. function template_maintenance() { global $context, $settings, $options, $scripturl, $txt, $modSettings; // Display the administrator's message at the top. echo '
'; // And now all the same basic login stuff from before. echo '
', $context['title'], '
', $txt['maintenance3'], ' ', $context['description'], '
', $txt[114], '
', $txt[35], ': ', $txt[36], ':  
', $txt[497], ':   ', $txt[508], ':
'; } // This is for the security stuff - makes administrators login every so often. function template_admin_login() { global $context, $settings, $options, $scripturl, $txt; // Since this should redirect to whatever they were doing, send all the get data. echo '
'; // We just need the password. echo '
', $txt[34], '
', $txt[36], ': ', $txt[119], '
'; // Make sure to output all the old post data. echo $context['post_data'], '
'; // Focus on the password box. echo ' '; } // Activate your account manually? function template_retry_activate() { global $context, $settings, $options, $txt, $scripturl; // Just ask them for their code so they can try it again... echo '
'; // You didn't even have an ID? if (empty($context['member_id'])) echo ' '; echo '
', $context['page_title'], '
', $txt['invalid_activation_username'], ':
', $txt['invalid_activation_retry'], ':
'; } // Activate your account manually? function template_resend() { global $context, $settings, $options, $txt, $scripturl; // Just ask them for their code so they can try it again... echo '
'; if ($context['can_activate']) echo ' '; echo '
', $context['page_title'], '
', $txt['invalid_activation_username'], ':
', $txt['invalid_activation_new'], '
', $txt['invalid_activation_new_email'], ':
', $txt['invalid_activation_password'], ':
', $txt['invalid_activation_known'], '
', $txt['invalid_activation_retry'], ':
'; } ?>