';
// It is a long story as to why we have this when we're clearly not going to use it.
if (!empty($context['from_ajax']))
echo '
';
echo '
';
}
// Tell a guest to get lost or login!
function template_kick_guest()
{
global $context, $settings, $scripturl, $modSettings, $txt;
// This isn't that much... just like normal login but with a message at the top.
echo '
';
// Do the focus thing...
echo '
';
}
// This is for maintenance mode.
function template_maintenance()
{
global $context, $settings, $scripturl, $txt, $modSettings;
// Display the administrator's message at the top.
echo '
';
}
// This is for the security stuff - makes administrators login every so often.
function template_admin_login()
{
global $context, $settings, $scripturl, $txt;
// Since this should redirect to whatever they were doing, send all the get data.
echo '
';
// Focus on the password box.
echo '
';
}
// Activate your account manually?
function template_retry_activate()
{
global $context, $txt, $scripturl;
// Just ask them for their code so they can try it again...
echo '
';
}
// Activate your account manually?
function template_resend()
{
global $context, $txt, $scripturl;
// Just ask them for their code so they can try it again...
echo '
';
}
?>