| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>用户登录</title>
- <style>
- body {
- font-family: Arial, sans-serif;
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100vh;
- background-color: #f0f0f0;
- margin: 0;
- }
- .login-container {
- background-color: white;
- padding: 30px;
- border-radius: 10px;
- box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
- text-align: center;
- width: 350px;
- }
- .login-container h1 {
- margin-bottom: 20px;
- font-size: 24px;
- }
- .login-container input[type="text"], .login-container input[type="password"] {
- width: 100%;
- padding-top: 15px;
- padding-bottom: 15px;
- margin-bottom: 20px;
- border: 1px solid #ccc;
- border-radius: 5px;
- }
- .login-container button {
- width: 100%;
- padding: 15px;
- background-color: #007BFF;
- border: none;
- border-radius: 5px;
- color: white;
- font-size: 16px;
- cursor: pointer;
- }
- .login-container button:hover {
- background-color: #0056b3;
- }
- .error-message {
- color: red;
- margin-top: 10px;
- }
- </style>
- <script src="/js/jquery-3.4.1.min.js"></script>
- <script>
- var token = ""
- function login() {
- const username = $('#username').val();
- const password = $('#password').val();
- if (!username || !password) {
- alert('请输入用户名和密码');
- return;
- }
- $.ajax({
- url: '/api/user.lua?action=login',
- type: 'POST',
- contentType: 'application/json',
- data: JSON.stringify({ username: username, password: password }),
- success: function(response) {
- if (response.code === 200) {
- token = response.data.token;
- fetchUserInfo();
- } else {
- $('#errorMessage').text(response.msg || '登录失败,请重试');
- }
- }
- });
- }
- function fetchUserInfo() {
- $.ajax({
- url: '/api/user.lua?action=getinfo',
- type: 'GET',
- headers:{
- "token":token
- },
- success: function(response) {
- if (response.code === 200) {
- const userInfo = response.data;
- alert(`用户信息:\n登录时间: ${userInfo.login_time}`);
- } else {
- alert('获取用户信息失败,请重试');
- }
- },
- error: function() {
- alert('获取用户信息失败,请重试');
- }
- });
- }
- </script>
- </head>
- <body>
- <div class="login-container">
- <h1>用户登录</h1>
- <input type="text" id="username" placeholder="请输入用户名">
- <input type="password" id="password" placeholder="请输入密码">
- <button onclick="login()">确认</button>
- <div id="errorMessage" class="error-message"></div>
- </div>
- </body>
- </html>
|