Add PHP index file
[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 ?>
18 <body>
19
20 <center>
21 <table width="50%" class="sqm_signout">
22 <tr width="100%"><th class="sqm_signoutBar">
23 <?php echo _("Sign Out"); ?>
24 </th></tr>
25 <?php if (!empty($plugin_output['signout_message'])) echo $plugin_output['signout_message']; ?>
26 <tr width="100%"><td>
27 <?php echo _("You have been successfully signed out."); ?><br />
28 <a href="<?php echo $login_uri; ?>" target="<?php echo $frame_top; ?>"><?php echo _("Click here to log back in."); ?></a><br />
29 </td></tr>
30 <tr width="100%"><td class="sqm_signoutBar"><br /></td></tr>
31 </table>
32 </center>
33