Fixed get_post() support for numeric fields.
[fa-stable.git] / access / login.php
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL, 
5         as published by the Free Software Foundation, either version 3 
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12         if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_to_root']))
13                 die(_("Restricted access"));
14         include_once($path_to_root . "/includes/ui.inc");
15         include_once($path_to_root . "/includes/page/header.inc");
16
17         $js = "<script language='JavaScript' type='text/javascript'>
18 function defaultCompany()
19 {
20         document.forms[0].company_login_name.options[".user_company()."].selected = true;
21 }
22 </script>";
23         add_js_file('login.js');
24         // Display demo user name and password within login form if allow_demo_mode option is true
25         if ($SysPrefs->allow_demo_mode == true)
26         {
27             $demo_text = _("Login as user: demouser and password: password");
28         }
29         else
30         {
31                 $demo_text = _("Please login here");
32         if (@$SysPrefs->allow_password_reset) {
33                 $demo_text .= " "._("or")." <a href='$path_to_root/index.php?reset=1'>"._("request new password")."</a>";
34         }
35         }
36
37         if (check_faillog())
38         {
39                 $blocked_msg = '<span class="redfg">'._('Too many failed login attempts.<br>Please wait a while or try later.').'</span>';
40
41             $js .= "<script>setTimeout(function() {
42                 document.getElementsByName('SubmitUser')[0].disabled=0;
43                 document.getElementById('log_msg').innerHTML='$demo_text'}, 1000*".$SysPrefs->login_delay.");</script>";
44             $demo_text = $blocked_msg;
45         }
46         flush_dir(user_js_cache());
47         if (!isset($def_coy))
48                 $def_coy = 0;
49         $def_theme = "default";
50
51         $login_timeout = $_SESSION["wa_current_user"]->last_act;
52
53         $title = $login_timeout ? _('Authorization timeout') : $SysPrefs->app_title." ".$version." - "._("Login");
54         $encoding = isset($_SESSION['language']->encoding) ? $_SESSION['language']->encoding : "iso-8859-1";
55         $rtl = isset($_SESSION['language']->dir) ? $_SESSION['language']->dir : "ltr";
56         $onload = !$login_timeout ? "onload='defaultCompany()'" : "";
57
58         echo "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n";
59         echo "<html dir='$rtl' >\n";
60         echo "<head profile=\"http://www.w3.org/2005/10/profile\"><title>$title</title>\n";
61         echo "<meta http-equiv='Content-type' content='text/html; charset=$encoding' >\n";
62         echo "<link href='$path_to_root/themes/$def_theme/default.css' rel='stylesheet' type='text/css'> \n";
63         echo "<link href='$path_to_root/themes/default/images/favicon.ico' rel='icon' type='image/x-icon'> \n";
64         send_scripts();
65         if (!$login_timeout)
66         {
67                 echo $js;
68         }
69         echo "</head>\n";
70
71         echo "<body id='loginscreen' $onload>\n";
72
73         echo "<table class='titletext'><tr><td>$title</td></tr></table>\n";
74         
75         div_start('_page_body');
76         br();br();
77         start_form(false, false, $_SESSION['timeout']['uri'], "loginform");
78         start_table(false, "class='login'");
79         start_row();
80         echo "<td align='center' colspan=2>";
81         if (!$login_timeout) { // FA logo
82         echo "<a target='_blank' href='".$SysPrefs->power_url."'><img src='$path_to_root/themes/$def_theme/images/logo_frontaccounting.png' alt='FrontAccounting' height='50' onload='fixPNG(this)' border='0' ></a>";
83         } else { 
84                 echo "<font size=5>"._('Authorization timeout')."</font>";
85         } 
86         echo "</td>\n";
87         end_row();
88
89         if (!$login_timeout)
90                 table_section_title(_("Version")." $version   Build ".$SysPrefs->build_version." - "._("Login"));
91         $value = $login_timeout ? $_SESSION['wa_current_user']->loginname : ($SysPrefs->allow_demo_mode ? "demouser":"");
92
93         text_row(_("User name"), "user_name_entry_field", $value, 20, 30);
94
95         $password = $SysPrefs->allow_demo_mode ? "password":"";
96
97         password_row(_("Password:"), 'password', $password);
98
99         if ($login_timeout) {
100                 hidden('company_login_name', user_company());
101         } else {
102                 $coy =  user_company();
103                 if (!isset($coy))
104                         $coy = $def_coy;
105                 if (!@$SysPrefs->text_company_selection) {
106                         echo "<tr><td>"._("Company")."</td><td><select name='company_login_name'>\n";
107                         for ($i = 0; $i < count($db_connections); $i++)
108                                 echo "<option value=$i ".($i==$coy ? 'selected':'') .">" . $db_connections[$i]["name"] . "</option>";
109                         echo "</select>\n";
110                         echo "</td></tr>";
111                 } else {
112                         text_row(_("Company"), "company_login_nickname", "", 20, 50);
113                 }
114                 start_row();
115                 label_cell($demo_text, "colspan=2 align='center' id='log_msg'");
116                 end_row();
117         }; 
118         end_table(1);
119         echo "<input type='hidden' id=ui_mode name='ui_mode' value='".!fallback_mode()."' >\n";
120         echo "<center><input type='submit' value='&nbsp;&nbsp;"._("Login -->")."&nbsp;&nbsp;' name='SubmitUser'"
121                 ." onclick='set_fullmode();'".(isset($blocked_msg) ? " disabled" : '')." ></center>\n";
122
123         foreach($_SESSION['timeout']['post'] as $p => $val) {
124                 // add all request variables to be resend together with login data
125                 if (!in_array($p, array('ui_mode', 'user_name_entry_field', 
126                         'password', 'SubmitUser', 'company_login_name'))) 
127                         if (!is_array($val))
128                                 echo "<input type='hidden' name='$p' value='$val'>";
129                         else
130                                 foreach($val as $i => $v)
131                                         echo "<input type='hidden' name='{$p}[$i]' value='$v'>";
132         }
133         end_form(1);
134         $Ajax->addScript(true, "document.forms[0].password.focus();");
135
136     echo "<script language='JavaScript' type='text/javascript'>
137     //<![CDATA[
138             <!--
139             document.forms[0].user_name_entry_field.select();
140             document.forms[0].user_name_entry_field.focus();
141             //-->
142     //]]>
143     </script>";
144     div_end();
145         echo "<table class='bottomBar'>\n";
146         echo "<tr>";
147         if (isset($_SESSION['wa_current_user'])) 
148                 $date = Today() . " | " . Now();
149         else    
150                 $date = date("m/d/Y") . " | " . date("h.i am");
151         echo "<td class='bottomBarCell'>$date</td>\n";
152         echo "</tr></table>\n";
153         echo "<table class='footer'>\n";
154         echo "<tr>\n";
155         echo "<td><a target='_blank' href='".$SysPrefs->power_url."' tabindex='-1'>".$SysPrefs->app_title." $version - " . _("Theme:") . " " . $def_theme . "</a></td>\n";
156         echo "</tr>\n";
157         echo "<tr>\n";
158         echo "<td><a target='_blank' href='".$SysPrefs->power_url."' tabindex='-1'>".$SysPrefs->power_by."</a></td>\n";
159         echo "</tr>\n";
160         echo "</table><br><br>\n";
161         echo "</body></html>\n";
162