X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=access%2Flogin.php;h=d3154b5240bb3adcbac6c3a3a367fb3af283a940;hb=0d191c7bff92b9a9bbc44dab48855477edb99ebf;hp=6ed5eac5c8a4bfcbc3eb1dc7dbfaf7e0566b7d21;hpb=7e1e2c6ca0e1a974e3d606bae5fa322c7fa4d3bc;p=fa-stable.git diff --git a/access/login.php b/access/login.php index 6ed5eac5..d3154b52 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,10 +29,24 @@ 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; + } + flush_dir(user_js_cache()); if (!isset($def_coy)) $def_coy = 0; - $def_theme = isset($_SESSION["wa_current_user"]) ? user_theme() : "default"; + $def_theme = "default"; $login_timeout = $_SESSION["wa_current_user"]->last_act; @@ -49,24 +57,27 @@ function set_fullmode() { echo "\n"; echo "\n"; - echo "$title\n"; + echo "$title\n"; echo "\n"; echo " \n"; + echo " \n"; + send_scripts(); if (!$login_timeout) { - echo $js2; echo $js; - } + } echo "\n"; - echo "\n"; + echo "\n"; - echo "
$title
\n"; + echo "
$title
\n"; + div_start('_page_body'); br();br(); - start_table("$table_style2 width=400"); + start_form(false, false, $_SESSION['timeout']['uri'], "loginform"); + start_table(false, "class='login'"); start_row(); - echo ""; + echo ""; if (!$login_timeout) { // FA logo echo "FrontAccounting"; } else { @@ -75,23 +86,16 @@ function set_fullmode() { echo "\n"; end_row(); - start_row(); - if (!$login_timeout) { // FA version info - echo ""._("Version")." $version Build $build_version\n"; - }; // end of FA version info - end_row(); - br(); - start_form(false, false, $_SESSION['timeout']['uri'], "loginform"); - start_table("$table_style2 width=400 style='background-color:#eeeeee;'"); 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":""); text_row(_("User name"), "user_name_entry_field", $value, 20, 30); $password = $allow_demo_mode ? "password":""; - echo ""._("Password")."\n"; + password_row(_("Password:"), 'password', $password); if ($login_timeout) { hidden('company_login_name', $_SESSION["wa_current_user"]->company); @@ -100,25 +104,37 @@ function set_fullmode() { $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"; - end_form(1); + echo "
\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_table(); + end_form(1); + $Ajax->addScript(true, "document.forms[0].password.focus();"); + echo ""; - echo "\n"; + 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 "\n"; echo "
$date$date
\n"; - echo "\n"; + echo "
\n"; echo "\n"; - echo "\n"; + echo "\n"; echo "\n"; echo "\n"; - echo "\n"; + echo "\n"; echo "\n"; echo "

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