|
@@ -0,0 +1,73 @@
|
|
|
+<!DOCTYPE html>
|
|
|
+<html lang="zh-CN"
|
|
|
+ xmlns="http://www.w3.org/1999/html"
|
|
|
+ xmlns:th="http://www.thymeleaf.org">
|
|
|
+<head>
|
|
|
+ <meta charset="utf-8">
|
|
|
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
+ <!-- 上述3个meta标签*必须*放在最前面,任何其他内容都*必须*跟随其后! -->
|
|
|
+ <title>用户登录</title>
|
|
|
+
|
|
|
+ <!-- Bootstrap -->
|
|
|
+ <link href="https://cdn.jsdelivr.net/npm/bootstrap@3.3.7/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
|
+
|
|
|
+ <!-- HTML5 shim 和 Respond.js 是为了让 IE8 支持 HTML5 元素和媒体查询(media queries)功能 -->
|
|
|
+ <!-- 警告:通过 file:// 协议(就是直接将 html 页面拖拽到浏览器中)访问页面时 Respond.js 不起作用 -->
|
|
|
+ <!--[if lt IE 9]>
|
|
|
+ <script src="https://cdn.jsdelivr.net/npm/html5shiv@3.7.3/dist/html5shiv.min.js"></script>
|
|
|
+ <script src="https://cdn.jsdelivr.net/npm/respond.js@1.4.2/dest/respond.min.js"></script>
|
|
|
+ <![endif]-->
|
|
|
+</head>
|
|
|
+<body>
|
|
|
+<div class="container">
|
|
|
+ <div class="row">
|
|
|
+ <h1>用户登录</h1>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="row">
|
|
|
+ <div class="col-sm-12 col-md-6 col-lg-6">
|
|
|
+ <div class="form-group">
|
|
|
+ <input id="username" type="text" class="form-control" placeholder="用户名"/>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="form-group">
|
|
|
+ <input id="password" type="password" class="form-control" placeholder="密码"/>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <button type="button" class="btn btn-default" onclick="login();">登录</button>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="col-sm-12 col-md-6 col-lg-6">
|
|
|
+
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</div>
|
|
|
+
|
|
|
+<!-- jQuery (Bootstrap 的所有 JavaScript 插件都依赖 jQuery,所以必须放在前边) -->
|
|
|
+<script src="https://cdn.jsdelivr.net/npm/jquery@1.12.4/dist/jquery.min.js"></script>
|
|
|
+<!-- 加载 Bootstrap 的所有 JavaScript 插件。你也可以根据需要只加载单个插件。 -->
|
|
|
+<script src="https://cdn.jsdelivr.net/npm/bootstrap@3.3.7/dist/js/bootstrap.min.js"></script>
|
|
|
+
|
|
|
+<script>
|
|
|
+ function login() {
|
|
|
+ $.ajax({
|
|
|
+ url: '/user/login?username=' + $('#username').val() + '&password=' + $('#password').val(),
|
|
|
+ type: 'POST',
|
|
|
+ data: null,
|
|
|
+ dataType: "text",
|
|
|
+ async: false,
|
|
|
+ cache: false,
|
|
|
+ contentType: false,
|
|
|
+ processData: false,
|
|
|
+ success: function (data) {
|
|
|
+ alert(data)
|
|
|
+ },
|
|
|
+ error: function (data) {
|
|
|
+ console.log(data);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+</script>
|
|
|
+</body>
|
|
|
+</html>
|