加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
change_passwd1.php 697 Bytes
一键复制 编辑 原始数据 按行查看 历史
玉强 提交于 2024-03-15 11:30 . first commit
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<?php
$uid = $_GET['uid'];
$user = $_GET['username'];
?>
<form action="change_passwd2.php" method="post">
<input type="hidden" name="id" value="<?php echo $uid ?>">
用户名: <input type="text" disabled="disabled" name="username" value="<?php echo $user ?>">
修改密码: <input type="password" name="pass1">
确认密码: <input type="password" name="pass2">
<input type="submit" value="提交">
</form>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化