tpl_activate.php

来自「一款文件上传程序」· PHP 代码 · 共 18 行

PHP
18
字号
<!-- tpl_activate.php -->

<h1>Activate</h1>

<p>
    Enter the email associated with your account below. If the email you entered is valid, an activation code will be sent to you.
</p>

<?php /* Errors will be printed here */ if ( isset ( $error ) ) print $error; ?>

<form method="post" action="account.php?action=resend_activation">
    <input type="hidden" name="task" value="activate" />
    <p>
        <input type="text" name="email" value="" size="30" maxlength="200" />
        <input type="submit" value="Submit" class="blue_button" />
        <input type="button" onclick="go('account.php?action=login');" class="blue_button"  value="Cancel" />
    </p>
</form>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?