pending-resend.php
来自「GForge 3.0 协作开发平台 支持CVS, mailing lists, 」· PHP 代码 · 共 48 行
PHP
48 行
<?php/** * * Resend account activation email with confirmation URL * * SourceForge: Breaking Down the Barriers to Open Source Development * Copyright 1999-2001 (c) VA Linux Systems * http://sourceforge.net * * @version $Id: pending-resend.php,v 1.11 2001/03/22 15:29:33 pfalcon Exp $ * */require_once('pre.php');$u = user_get_object_by_name($form_user);exit_assert_object($u, 'User');if ($u->getStatus() != 'P') { exit_error( 'Invalid action', 'Your account is already active.' );}$u->sendRegistrationEmail();$HTML->header(array(title=>"Account Pending Verification"));?><h2>Pending Account</h2><p>Your email confirmation has been resent. Visit the linkin this email to complete the registration process.</p><p><a href="/">[Return to <?php print($GLOBALS['sys_name']) ?>]</a></p><?php$HTML->footer(array());?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?