lost_password_reset.ihtml

来自「phpShop是一个基于php的分布式电子商务模块」· IHTML 代码 · 共 22 行

IHTML
22
字号

<!-- Body starts here -->

<?php if(!$error): ?>
<h2>Lost Password Reset</h2>
Your password has been reset. <br><br>
<a href="<?php $sess->purl(URL."?page=account/index");?>">Click here to proceed to the login.</a>
<?php else: ?>
<h2>Error Resetting Password</h2>
<?php
    //get vendor info
    $dbv = new ps_DB;
    $qt = "SELECT * from vendor WHERE vendor_id = $ps_vendor_id";
    $dbv->query($qt);
    $dbv->next_record();
    $vendor_email = $dbv->f("contact_email");
    $vendor_name = $dbv->f("vendor_name");
    echo "<a href=mailto:$vendor_email?lost+password>Please click here to contact the site administrator.</a>";
?>
<?php endif; ?>

<!-- Body ends here -->

⌨️ 快捷键说明

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