tpl_password.php

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

PHP
16
字号
<!-- tpl_password.php -->

<h1>Password recovery</h1>

<p>Enter the email associated with your account below. An email with instructions on how to change your password will be sent to you.</p>

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

<form method="post" action="account.php?action=password">
    <input type="hidden" name="task" value="password" />
    <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 + -
显示快捷键?