00001 <?php
00002 # This file is part of the Savane project
00003 # <http://gna.org/projects/savane/>
00004 #
00005 # $Id: pending.php 4567 2005-06-30 17:19:37Z toddy $
00006 #
00007 #
00008 #
00009 # Copyright 1999-2000 (c) The SourceForge Crew
00010 #
00011 #
00012 # Copyright (C) 2000, 2001, 2002 Free Software Foundation
00013 #
00014 # The Savane project is free software; you can redistribute it and/or
00015 # modify it under the terms of the GNU General Public License
00016 # as published by the Free Software Foundation; either version 2
00017 # of the License, or (at your option) any later version.
00018 #
00019 # The Savane project is distributed in the hope that it will be useful,
00020 # but WITHOUT ANY WARRANTY; without even the implied warranty of
00021 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
00022 # GNU General Public License for more details.
00023 #
00024 # You should have received a copy of the GNU General Public License
00025 # along with the Savane project; if not, write to the Free Software
00026 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
00027 #
00028 #
00029 #
00030 #
00031
00032 require "../include/pre.php";
00033 $HTML->header(array(title=>_("Pending Account")));
00034
00035
00036 echo '<h3>'._("Pending Account").'</h3>';
00037
00038 echo '<p>'._("Your account is currently pending your email confirmation. Visiting the link sent to you in this email will activate your account.").'</p>';
00039
00040 echo '<p>'._("If you need this email resent, please click below and a confirmation email will be sent to the email address you provided in registration.").'</p>';
00041
00042 echo '<p><a href="pending-resend.php?form_user='.$form_user.'">['._("Resend Confirmation Email").']</a>';
00043 echo '<br /><a href="/">';
00044 printf (_("[Return to %s]"),$GLOBALS['sys_name']);
00045 echo '</a></p>';
00046
00047 $HTML->footer(array());
00048
00049 ?>