X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=access%2Flogin.php;h=0233354f0e4be510a99e3414ae6cca44935dc2e7;hb=400686e2e47f1bfe0194d1257a97e3727e640a64;hp=c60819a90ea3fe5074281e9850fb089963329185;hpb=46c5f7a65a7659a44ae8254c63152074363d3987;p=fa-stable.git diff --git a/access/login.php b/access/login.php index c60819a9..0233354f 100644 --- a/access/login.php +++ b/access/login.php @@ -12,21 +12,15 @@ 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.inc"); - + include_once($path_to_root . "/includes/page/header.inc"); + $js = ""; - $js2 = ""; - + add_js_file('login.js'); // Display demo user name and password within login form if "$allow_demo_mode" is true if ($allow_demo_mode == true) { @@ -35,6 +29,19 @@ function set_fullmode() { else { $demo_text = _("Please login here"); + if (@$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; } if (!isset($def_coy)) $def_coy = 0; @@ -49,14 +56,15 @@ function set_fullmode() { echo "\n"; echo "\n"; - echo "$title\n"; - echo "\n"; + echo "$title\n"; + echo "\n"; echo " \n"; + echo " \n"; + send_scripts(); if (!$login_timeout) { echo $js; - } - echo $js2; + } echo "\n"; echo "\n"; @@ -70,14 +78,14 @@ function set_fullmode() { start_row(); echo ""; if (!$login_timeout) { // FA logo - echo "FrontAccounting"; + echo "FrontAccounting"; } else { echo ""._('Authorization timeout').""; } echo "\n"; end_row(); - echo "\n"; + echo "\n"; if (!$login_timeout) table_section_title(_("Version")." $version Build $build_version - "._("Login")); $value = $login_timeout ? $_SESSION['wa_current_user']->loginname : ($allow_demo_mode ? "demouser":""); @@ -88,32 +96,44 @@ function set_fullmode() { password_row(_("Password:"), 'password', $password); - if ($login_timeout) { + if ($login_timeout) { hidden('company_login_name', $_SESSION["wa_current_user"]->company); } else { if (isset($_SESSION['wa_current_user']->company)) $coy = $_SESSION['wa_current_user']->company; else $coy = $def_coy; - echo ""._("Company")."\n"; + if (!@$text_company_selection) { + echo ""._("Company")."\n"; + echo ""; + } else { +// $coy = $def_coy; + text_row(_("Company"), "company_login_nickname", "", 20, 50); + } start_row(); - label_cell($demo_text, "colspan=2 align='center'"); + label_cell($demo_text, "colspan=2 align='center' id='log_msg'"); end_row(); }; end_table(1); echo "
\n"; + .($login_timeout ? '':" onclick='set_fullmode();'").(isset($blocked_msg) ? " disabled" : '')." >\n"; foreach($_SESSION['timeout']['post'] as $p => $val) { // add all request variables to be resend together with login data if (!in_array($p, array('ui_mode', 'user_name_entry_field', 'password', 'SubmitUser', 'company_login_name'))) - echo ""; + if (!is_array($val)) + echo ""; + else + foreach($val as $i => $v) + echo ""; } end_form(1); + $Ajax->addScript(true, "document.forms[0].password.focus();"); + echo "