|
- <!DOCTYPE html>
- <html lang="zh-CN">
- <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: #f0f2f5;
- margin: 0;
- }
-
- .container {
- text-align: center;
- background-color: #fff;
- padding: 40px;
- border-radius: 8px;
- box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
- width: 300px;
- }
-
- h1 {
- color: #333;
- margin-bottom: 20px;
- }
-
- p {
- color: #666;
- font-size: 16px;
- line-height: 1.5;
- }
-
- .btn {
- display: inline-block;
- padding: 10px 20px;
- margin-top: 20px;
- font-size: 16px;
- color: #fff;
- background-color: #5cb85c;
- border: none;
- border-radius: 4px;
- cursor: pointer;
- text-decoration: none;
- transition: background-color 0.3s;
- }
-
- .btn:hover {
- background-color: #4cae4c;
- }
-
- /* 添加logo样式 */
-
- .logo {
-
- display: block;
-
- margin: 0 auto 20px; /* 上下自动居中,底部外边距20px */
-
- width: 100px; /* 根据你的logo大小调整 */
-
- height: auto; /* 保持图片原始宽高比 */
-
- }
- </style>
- </head>
- <body>
- <div class="container">
- <!-- 添加logo图片 -->
- <img src="../static/img/success.jpeg" alt="Logo" class="logo">
- <h1>授权成功!</h1>
- <p>您已成功完成微信小程序授权。</p>
- <a href="https://open.weixin.qq.com/" class="btn">前往微信</a>
- <!-- <button onclick="closeWindow()" class="btn">关闭页面</button>-->
- </div>
-
- <script>
- function closeWindow() {
- window.close();
- }
- </script>
- </body>
- </html>
|