1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
<?php
/**********************************************************************
Copyright (C) FrontAccounting, LLC.
Released under the terms of the GNU General Public License, GPL,
as published by the Free Software Foundation, either version 3
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
***********************************************************************/
$page_security = 'SA_OPEN';
$path_to_root="..";
include($path_to_root . "/includes/session.inc");
include($path_to_root . "/includes/page/header.inc");
page_header(_("Logout"), true, false, '', get_js_png_fix());
echo "<table width='100%' border='0'>
<tr>
<td align='center'><img src='$path_to_root/themes/default/images/logo_frontaccounting.png' alt='FrontAccounting' width='250' height='50' onload='fixPNG(this)' /></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td><div align='center'><font size=2>";
echo _("Thank you for using") . " ";
echo "<strong>$app_title $version</strong>";
echo "</font></div></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td><div align='center'>";
echo "<a href='$path_to_root/index.php'><b>" . _("Click here to Login Again.") . "</b></a>";
echo "</div></td>
</tr>
</table>
<br>\n";
end_page(false, true);
session_unset();
session_destroy();
?>
|