mirror of
https://gitee.com/coder-xiaomo/flashsale
synced 2025-09-11 22:41:38 +08:00
78 lines
2.8 KiB
HTML
78 lines
2.8 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<title>Title</title>
|
||
<link href="static/assets/global/plugins/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css"/>
|
||
<link href="static/assets/global/css/components.css" rel="stylesheet" type="text/css"/>
|
||
<link href="static/assets/admin/pages/css/login.css" rel="stylesheet" type="text/css"/>
|
||
<script src="./static/assets/global/plugins/jquery-1.11.0.min.js" type="text/javascript"></script>
|
||
</head>
|
||
<body class="login">
|
||
<div class="content">
|
||
<h3 class="form-title">用户登录</h3>
|
||
<div class="from-group">
|
||
<label class="control-label">手机号</label>
|
||
<div>
|
||
<input class="form-control" type="text" placeholder="手机号" name="telephone" id="telephone">
|
||
</div>
|
||
</div>
|
||
<div class="from-group">
|
||
<label class="control-label">密码</label>
|
||
<div>
|
||
<input class="form-control" type="password" placeholder="密码" name="password" id="password">
|
||
</div>
|
||
</div>
|
||
<div class="form-actions">
|
||
<button class="btn blue" id="login" type="submit">
|
||
登录
|
||
</button>
|
||
<a class="btn green" href="getotp.html" type="submit">
|
||
注册
|
||
</a>
|
||
</div>
|
||
</div>
|
||
|
||
<script>
|
||
jQuery(document).ready(function () {
|
||
$("#login").on("click", function () {
|
||
var telephone = $("#telephone").val();
|
||
var password = $("#password").val();
|
||
if (telephone == null || telephone == "") {
|
||
alert("手机号不能为空");
|
||
return false; // 捕获onclick事件,不让他传递到上一层
|
||
}
|
||
if (password == null || password == "") {
|
||
alert("密码不能为空");
|
||
return false; // 捕获onclick事件,不让他传递到上一层
|
||
}
|
||
$.ajax({
|
||
type: "POST",
|
||
contentType: "application/x-www-form-urlencoded",
|
||
url: "http://localhost:8090/user/login",
|
||
data: {
|
||
"telephone": telephone,
|
||
"password": password,
|
||
},
|
||
xhrFields: {withCredentials: true},
|
||
success: function (data) {
|
||
if (data.status == "success") {
|
||
alert("登录成功");
|
||
window.location.href = "listitem.html";
|
||
} else {
|
||
alert("登录失败,原因为" + data.data.errMsg);
|
||
}
|
||
},
|
||
error: function (data) {
|
||
alert("登录失败,原因为" + data.responseText);
|
||
}
|
||
})
|
||
})
|
||
|
||
$("#telephone").val("18900000001");
|
||
$("#password").val("3g3hkj");
|
||
// $("#login").click();
|
||
})
|
||
</script>
|
||
</body>
|
||
</html> |