<?php
include(INC_DIR . "top_login.inc");
$error_msg=$login_fail_msg;
if($_GET['reply'] == 'Your maximum never usage time has been reached') {
$info_msg=$expired_time_msg;
}
if(substr($_GET['reply'],0,-2) == 'Password Has Expired') {
$info_msg=$expired_account_msg;
}
if(substr($_GET['reply'],0,-2) == 'You are already logged in') {
$info_msg=$already_logged;
}
include(INC_DIR . "login_form.inc");
include(INC_DIR . "tail.inc");
?>