Files
weipan02_server/application/index/view/user/pwd_login.html
你的名字 0483b4b364 1
2025-07-14 10:22:40 +08:00

99 lines
4.1 KiB
HTML
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{include file="public/header" nav="设置密码"}
<link rel="stylesheet" type="text/css" href="__ROOT__/static/wap/css/tipmask.css">
<link rel="stylesheet" type="text/css" href="__ROOT__/static/wap/css/box_pay.css">
<div id="app">
<div class="box">
<div class="jun-content">
<div class="f_box_addbank">
<div class="t_header">
<span><img src="__ROOT__/static/wap/images/goback.png" alt="" onClick="javascript:history.back()"></span>
<span><i>修改登录密码</i></span>
</div>
<div class="f_content">
<ul>
<li>
<label>原登录密码</label>
<span><input type="password" name="oldpwd" id="oldpwd" value="" placeholder="输入原登录密码" onfocus="this.placeholder=''" onblur="this.placeholder='输入原登录密码'"></span>
</li>
<li>
<label>新登录密码</label>
<span><input type="password" name="pwd" id="pwd" value="" placeholder="输入新登录密码" onfocus="this.placeholder=''" onblur="this.placeholder='输入新登录密码'"></span>
</li>
<li>
<label>确认密码</label>
<span><input type="password" name="pwd2" id="pwd2" value="" placeholder="输入确认密码" onfocus="this.placeholder=''" onblur="this.placeholder='输入确认密码'"></span>
</li>
</ul>
<div class="sure">
<button id="sub_btn" type="button" class="el-button el-button--danger">确认 </button>
</div>
</div>
</div>
</div>
{include file="public/footer" menu='user'}
</div>
</div>
<div class="tipMask hide">
<div class="cont">
<p class="title">温馨提示</p>
<p class="stitle contents"></p>
<div id="msgBtn">
<div class="confirm guanbi">确定</div>
</div>
</div>
</div>
</body>
<script type="text/javascript" src="__ROOT__/static/theme/index/js/jquery.js"></script>
<script type="text/javascript">
$(function () {
$("#sub_btn").on("click", function () {
var oldpwd = $("#oldpwd").val();
var pwd = $("#pwd").val();
var pwd2 = $("#pwd2").val();
if (oldpwd.length < 6 || oldpwd.length > 16) {
msg("错误", "请输入6-16个字符的原登录密码", 1);
return false;
}
if (pwd.length < 6 || pwd.length > 16) {
msg("错误", "请输入6-16个字符的新登录密码", 1);
return false;
}
if (pwd2.length < 6 || pwd2.length > 16) {
msg("错误", "请再次输入6-16个字符的新登录密码", 1);
return false;
}
if (pwd != pwd2) {
msg("错误", "两次密码不一致!", 1);
return false;
}
var url = "/index/user/pwd_login";
$.ajax({
type : "POST",
url : url,
data: {'pwd':pwd,'pwd2':pwd2,'oldpwd':oldpwd},
dataType : "json",
success : function(result){
if(result.code == 1){
window.location.href = "/index/user/index"
}else{
msg("提示",result.info,1);
}
}
});
})
})
function msg(title, content, type, url) {
$(".contents").html(content);
if (type == 1) {
var btn = '<div class="confirm guanbi" onclick="$(\'.tipMask\').hide();">确定</div>';
}
else {
var btn = '<div class="confirm guanbi" onclick="window.location.href=\'' + url + '\'">确定</div>';
}
$("#msgBtn").html(btn);
$(".tipMask").show();
}
</script>
</html>