12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Login Page</title>
- <style>
- body {
- font-family: Arial, sans-serif;
- background-color: #f4f4f4;
- margin: 0;
- padding: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- height: 100vh;
- }
- .login-container {
- background-color: #fff;
- padding: 20px;
- border-radius: 8px;
- box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
- }
- .login-container h2 {
- text-align: center;
- color: #333;
- }
- .login-form {
- margin-top: 20px;
- }
- .form-group {
- margin-bottom: 15px;
- }
- .form-group label {
- display: block;
- margin-bottom: 5px;
- color: #555;
- }
- .form-group input {
- width: 100%;
- padding: 8px;
- box-sizing: border-box;
- border: 1px solid #ccc;
- border-radius: 4px;
- }
- .form-group button {
- background-color: #4caf50;
- color: #fff;
- padding: 10px;
- border: none;
- border-radius: 4px;
- cursor: pointer;
- width: 100%;
- }
- .form-group button:hover {
- background-color: #45a049;
- }
- </style>
- </head>
- <body>
- <div class="login-container">
- <h2>Login</h2>
- <form class="login-form" action="http://127.0.0.1:9898/open/jd/callback" method="get">
- <div class="form-group">
- <label for="username">Username:</label>
- <input type="text" id="username" name="username" required>
- </div>
- <div class="form-group">
- <label for="password">Password:</label>
- <input type="password" id="password" name="password" required>
- </div>
- <div class="form-group">
- <button type="submit">Login</button>
- </div>
- </form>
- </div>
- </body>
- </html>
|