forgotpassword.php
来自「这是国外的resip协议栈」· PHP 代码 · 共 56 行
PHP
56 行
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><!--System: ReproFile: forgotpassword.phpPurpose: Reset password & email to address on file for the userAuthor: S. Chanin--><html><head><link rel="stylesheet" type="text/css" href="repro_style.css" /><title>Forgot Password</title></head><body><h1 class="title">Repro</h1><h1>Forgot Password</h1><hr /><!-- if we've looped back due to an error, show the message --><?phpif (isset($_GET["error"])) { echo '<p class="error">' . $_GET["error"] . "</p>\n";}?><p>If you have forgotten your password, please enter your email address belowand the system will generate a new password for you and email that passwordto you.</p><form action="generatepassword.php" method="post"><table><tr><td>Username:</td><td><input type="text" name="username" id="username" value="<?php echo $_GET['username']; ?>" /></td></tr><tr><td>Email address:</td><td><input type="text" name="email" id="email" value="<?php echo $_GET['email']; ?>" /></td></tr><tr><td> </td><td><input type="submit" name="submit" id="submit" value="Reset Password" /></tr></table></form><br /><hr /><a href="index.php">Return to Welcome Page</a><br /></body></html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?