';
}
/**
* 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, $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, $modSettings;
// 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 '
';
}
/**
* The form for resending the activation code.
*/
function template_resend()
{
global $context, $txt, $scripturl;
// Just ask them for their code so they can try it again...
echo '
';
}
/**
* Confirm a logout.
*/
function template_logout()
{
global $context, $settings, $scripturl, $modSettings, $txt;
// This isn't that much... just like normal login but with a message at the top.
echo '
';
}
?>