2689f8ba2415f4d408610e1f6840970f99d4239e
[squirrelmail.git] / templates / default / signout.tpl
1 <?php
2 /**
3 * signout.tpl
4 *
5 * Template to create the signout page
6 *
7 * @copyright &copy; 1999-2006 The SquirrelMail Project Team
8 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
9 * @version $Id$
10 * @package squirrelmail
11 * @subpackage templates
12 */
13
14 /* retrieve the template vars */
15 extract($t);
16
17 $plugin_message = concat_hook_function('logout_above_text');
18 ?>
19 <body>
20
21 <center>
22 <table width="50%" class="sqm_signout">
23 <tr width="100%"><th class="sqm_signoutBar">
24 <?php echo _("Sign Out"); ?>
25 </th></tr>
26 <?php if (!empty($plugin_output['signout_message'])) echo $plugin_output['signout_message']; ?>
27 <tr width="100%"><td>
28 <?php echo _("You have been successfully signed out."); ?><br />
29 <a href="<?php echo $login_uri; ?>" target="<?php echo $frame_top; ?>"><?php echo _("Click here to log back in."); ?></a><br />
30 </td></tr>
31 <tr width="100%"><td class="sqm_signoutBar"><br /></td></tr>
32 </table>
33 </center>
34