X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=access%2Flogin.php;h=d3154b5240bb3adcbac6c3a3a367fb3af283a940;hb=0d191c7bff92b9a9bbc44dab48855477edb99ebf;hp=3bbf0060ec37fcab5ebe32d4a7ee4ad04be2267a;hpb=f4b29dbecba8d6c5ada8d2272bb3c285fe6e21e0;p=fa-stable.git diff --git a/access/login.php b/access/login.php index 3bbf0060..d3154b52 100644 --- a/access/login.php +++ b/access/login.php @@ -29,7 +29,21 @@ function defaultCompany() 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; + } + flush_dir(user_js_cache()); if (!isset($def_coy)) $def_coy = 0; $def_theme = "default"; @@ -43,9 +57,10 @@ function defaultCompany() echo "\n"; echo "\n"; - echo "$title\n"; + echo "$title\n"; echo "\n"; echo " \n"; + echo " \n"; send_scripts(); if (!$login_timeout) { @@ -89,23 +104,33 @@ function defaultCompany() $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();"); @@ -137,4 +162,3 @@ function defaultCompany() echo "

\n"; echo "\n"; -?> \ No newline at end of file