759a732755cad0458024568c5f5d86c1315da0cf
[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/ui_view.inc");
15         // Display demo user name and password within login form if "$allow_demo_mode" is true
16         if ($allow_demo_mode == true)
17         {
18             $demo_text = _("Login as user: demouser and password: password");
19         }
20         else
21         {
22                 $demo_text = _("Please login here");
23         }
24         if (!isset($def_coy))
25                 $def_coy = 0;
26         $def_theme = $path_to_root . '/themes/default';
27
28 $login_timeout = $_SESSION["wa_current_user"]->last_act;
29
30         echo "<html>
31                 <head>";
32 if (!$login_timeout) { // page header
33         echo '<script>'.get_js_png_fix().'</script>'; ?>
34 <script type="text/javascript">
35 function defaultCompany()
36 {
37         document.forms[0].company_login_name.options[<?php
38 //       echo $def_coy; 
39         echo $_SESSION["wa_current_user"]->company;
40          ?>].selected = true;
41         document.getElementById('ui_mode').value = 1;
42 }
43 </script>
44     <title><?php echo $app_title . " " . $version;?></title>
45     <meta http-equiv="Content-type" content="text/html; charset=<?php echo $_SESSION['language']->encoding;?>" />
46     <link rel="stylesheet" href="<?php echo $def_theme;?>/login.css" type="text/css" />
47 </head>
48
49  <body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onload="defaultCompany()">
50 <?php
51 } else { // end page header
52 ?>
53     <title><?php echo _('Authorization timeout'); ?></title>
54     <meta http-equiv="Content-type" content="text/html; charset=<?php echo $_SESSION['language']->encoding;?>" />
55     <link rel="stylesheet" href="<?php echo $def_theme;?>/login.css" type="text/css" />
56 <?php
57 };?>
58     <table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
59         <tr>
60                         <td align="center" valign="bottom">
61   <?php
62 if (!$login_timeout) { // FA logo
63 ?>          <a target="_blank" href="<?php $power_url; ?>"><img src="<?php echo $def_theme;?>/images/logo_frontaccounting.png" alt="FrontAccounting" width="250" height="50" onload="fixPNG(this)" border="0" /></a>
64 <?php } else { ?>
65                         <font size=5><?php echo _('Authorization timeout'); ?></font>
66 <?php }; ?>
67                         </td>
68                 </tr>
69
70         <tr>
71             <td align="center" valign="top">
72
73                     <table border="0" cellpadding="0" cellspacing="0">
74 <?php
75 if (!$login_timeout) { // FA version info
76 ?>                      <tr><td colspan=2 align="center"><font size=4><b><?php echo _("Version") . " " . $version . "   Build " . $build_version ?></b></font><br><br></td></tr>
77 <?php
78 }; // end of FA version info
79 ?>
80                         <tr>
81                             <td colspan="2" rowspan="2">
82                                         <form action="<?php 
83                                                 echo $login_timeout ? $_SERVER['PHP_SELF'] : $_SESSION['timeout']['uri'];
84                                         ?>" name="loginform" method="post">
85                     <table width="346" border="0" cellpadding="0" cellspacing="0">
86                                                 <input type="hidden" id=ui_mode name="ui_mode" value="0">
87                         <tr>
88                             <td colspan="5" bgcolor="#FFFFFF"><img src="<?php echo $def_theme; ?>/images/spacer.png" width="346" height="1" alt="" /></td>
89                                                 </tr>
90                         <tr>
91                             <td bgcolor="#367CB5"><img src="<?php echo $def_theme; ?>/images/spacer.png" width="12" height="200" alt="" /></td>
92
93                             <!--<td background="<?php echo $def_theme; ?>/images/outline/bg.png" width="233" height="200" colspan="3" valign="top">-->
94                             <td class="login" colspan="3" valign="top">
95                                 <table border="0" cellpadding="3" cellspacing="0" width="100%">
96                                     <tr>
97                                                                 <td  align ='right'>
98                                     <!--<span class="loginText">Client login<input name="external_login" type="checkbox" value="1" class="loginText"></span>-->
99                                                                 <br /></td>
100                                     </tr>
101
102                                     <tr>
103                                         <td width="90"></td><td class="loginText" width="283"><span><?php echo _("User name"); ?>:</span><br />
104                                          <input type="text" name="user_name_entry_field" value="<?php echo $login_timeout ? $_SESSION['wa_current_user']->loginname : ($allow_demo_mode ? "demouser":""); ?>"/><br />
105                                          <span><?php echo _("Password"); ?>:</span><br />
106                                          <input type="password" name="password"  value="<?php echo $allow_demo_mode ? "password":""; ?>">
107                                          <br />
108 <?php
109         if ($login_timeout) {
110                 echo "<br><input type = 'hidden'  name='company_login_name' value='".
111                 $_SESSION["wa_current_user"]->company."'>";
112         } else {
113 ?>
114                         <span><?php echo _("Company"); ?>:</span><br />
115                         <!--<select name="company_login_name" onchange="setCookie()">-->
116                         <select name="company_login_name" <?php if($login_timeout) echo 'disabled';?>>
117 <?php
118                         for ($i = 0; $i < count($db_connections); $i++)
119                                 echo "<option value=$i ".($i==$_SESSION['wa_current_user']->company ? 'selected':'') .">" . $db_connections[$i]["name"] . "</option>";
120 ?>
121                         </select>
122                         <br /><br />
123             <?php echo $demo_text;?>
124 <?php
125 }; // else in_ajax
126 ?>                                   </td>
127                                 </td>
128                                     </tr>
129
130                                     <tr>
131                                         <td></td><td align="left"><input type="submit" value= "<?php echo _("Login -->");?> " name="SubmitUser" /></td>
132                                     </tr>
133                                 </table>
134                                 </td>
135                         </tr>
136 <?php
137  if (!$login_timeout) 
138         echo "<tr>
139  <td colspan='5' bgcolor='#FFFFFF'><img src='$def_theme/images/spacer.png' width='346' height='1' alt='' /></td>
140          </tr>";
141
142         foreach($_SESSION['timeout']['post'] as $p => $val) {
143                 // add all request variables to be resend together with login data
144                 if (!in_array($p, array('ui_mode', 'user_name_entry_field', 
145                         'password', 'SubmitUser', 'company_login_name'))) 
146                         echo "<input type='hidden' name='$p' value='$val'>";
147         }
148 ?>
149                     </table>
150                                         </form>
151                             </td>
152                             <!--<td background="<?php echo $def_theme; ?>/images/outline/r.png" colspan="3" align="right" valign="top"><img src="<?php echo $def_theme; ?>/images/outline/tr.png" width="10" height="10" alt="" /></td>-->
153                         </tr>
154                         <tr>
155                             <!--<td background="<?php echo $def_theme; ?>/images/outline/r.png"><img src="<?php echo $def_theme; ?>/images/outline/r.png" width="10" height="10" alt=""></td>-->
156                         </tr>
157                         <tr>
158                                         <!--<td background="<?php echo $def_theme; ?>/images/outline/bm.png"><img src="<?php echo $def_theme; ?>/images/outline/bl.png" width="10" height="10" alt=""></td>-->
159                             <!--<td background="<?php echo $def_theme; ?>/images/outline/bm.png"><img src="<?php echo $def_theme; ?>/images/outline/bm.png" width="10" height="10" alt=""></td>-->
160                             <!--<td><img src="<?php echo $def_theme; ?>/images/outline/br.png" width="10" height="10" alt="" /></td>-->
161                         </tr>
162 <tr><td>&nbsp;</td></tr>
163 <?php
164 if (!$login_timeout) {
165 ?>
166 <tr>
167                 <td align="center" class="footer"><font size=1><a target='_blank' style="text-decoration: none" HREF='<?php echo $power_url; ?>'><font color="#FFFF00" valign="top">&nbsp;&nbsp;<?php echo $power_by; ?></font></a></font></td>
168         </tr>
169 <!--<tr><td>&nbsp;</td></tr><tr>
170         <td align="center" class="footer"><a target="_blank" HREF="http://frontaccounting.com/"><img src="<?php echo $def_theme; ?>/images/logo_frontaccounting.png"  height="60" width="60" border="0"/></a></td>
171 </tr>-->
172 <?php
173  if ($allow_demo_mode == true)
174  {
175     ?>
176       <tr>
177         <!--<td><br><div align="center"><a href="http://frontaccounting.com"><img src="<?php echo $def_theme; ?>/images/logo_frontaccounting.png"  border="0" align="middle" /></a></div></td>-->
178       </tr>
179     <?php
180  }
181 }
182 ?>
183                     </table>
184
185             </td>
186         </tr>
187     </table>
188     <script language="JavaScript" type="text/javascript">
189     //<![CDATA[
190             <!--
191             document.forms[0].user_name_entry_field.select();
192             document.forms[0].user_name_entry_field.focus();
193             //-->
194     //]]>
195     </script>
196 </body>
197 </html>