X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=access%2Flogin.php;h=a390006fbbe9284c876bee571450eea18e4710a3;hb=268a54dcfd08aff7113bc3afe8b784f36db2d0d4;hp=dc2a1965e691a7d0d32bd851e70f51098c2aa179;hpb=b17df731b4bb055c2fdd568bc4be9e5caa0ee07b;p=fa-stable.git diff --git a/access/login.php b/access/login.php index dc2a1965..a390006f 100644 --- a/access/login.php +++ b/access/login.php @@ -1,153 +1,162 @@ . + See the License here . ***********************************************************************/ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_to_root'])) - die("Restricted access"); - include_once($path_to_root . "/includes/ui/ui_view.inc"); - // Display demo user name and password within login form if "$allow_demo_mode" is true - $demo_text = ""; - if ($allow_demo_mode == True) + die(_("Restricted access")); + include_once($path_to_root . "/includes/ui.inc"); + include_once($path_to_root . "/includes/page/header.inc"); + + $js = ""; + add_js_file('login.js'); + // Display demo user name and password within login form if allow_demo_mode option is true + if ($SysPrefs->allow_demo_mode == true) { - $demo_text = "Login as user: demouser and password: cooldemo"; + $demo_text = _("Login as user: demouser and password: password"); } else { - $demo_text = "Please login here"; + $demo_text = _("Please login here"); + if (@$SysPrefs->allow_password_reset) { + $demo_text .= " "._("or")." "._("request new password").""; + } + } + + if (check_faillog()) + { + $blocked_msg = ''._('Too many failed login attempts.
Please wait a while or try later.').'
'; + + $js .= ""; + $demo_text = $blocked_msg; } + flush_dir(user_js_cache()); if (!isset($def_coy)) $def_coy = 0; - $def_theme = $path_to_root . '/themes/default'; -?> - - - - - <?php echo $app_title . " " . $version;?> - - - - - - - - - - - - \n"; + end_row(); - - -
FrontAccounting
- - - - - - - - - - - - - - - - - - - - - - - - -


- - - - - - - - - - - - - - - - - - - - - -
-
 
+ $def_theme = "default"; + + $login_timeout = $_SESSION["wa_current_user"]->last_act; + + $title = $login_timeout ? _('Authorization timeout') : $SysPrefs->app_title." ".$version." - "._("Login"); + $encoding = isset($_SESSION['language']->encoding) ? $_SESSION['language']->encoding : "iso-8859-1"; + $rtl = isset($_SESSION['language']->dir) ? $_SESSION['language']->dir : "ltr"; + $onload = !$login_timeout ? "onload='defaultCompany()'" : ""; + + echo "\n"; + echo "\n"; + echo "$title\n"; + echo "\n"; + echo " \n"; + echo " \n"; + send_scripts(); + if (!$login_timeout) + { + echo $js; + } + echo "\n"; + + echo "\n"; + + echo "
$title
\n"; + + div_start('_page_body'); + br();br(); + start_form(false, false, $_SESSION['timeout']['uri'], "loginform"); + start_table(false, "class='login'"); + start_row(); + echo "
"; + if (!$login_timeout) { // FA logo + echo "FrontAccounting"; + } else { + echo ""._('Authorization timeout').""; + } + echo "
- - - + "; + div_end(); + echo "\n"; + echo ""; + if (isset($_SESSION['wa_current_user'])) + $date = Today() . " | " . Now(); + else + $date = date("m/d/Y") . " | " . date("h.i am"); + echo "\n"; + echo "
$date
\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo "

\n"; + echo "\n"; +