| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=11,IE=10,IE=9,IE=8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
- <meta name="apple-mobile-web-app-title" content="CodeDay">
- <meta http-equiv="Cache-Control" content="no-siteapp">
- <title>配置</title>
- <style>
- .label {
- line-height: 30px;
- font-size: 16px;
- color: #666;
- }
- input {
- width: 100%;
- height: 30px;
- }
- .login-button {
- height: 40px;
- background-color: #009fe9;
- background-image: none;
- color: white;
- font-weight: normal;
- margin: 0;
- padding: 0;
- border: none;
- margin: 10px 0;
- font-size: 16px;
- box-shadow: none;
- cursor: pointer;
- display: block;
- width: 100%;
- }
- </style>
- </head>
- <body>
- <div class="login-box">
- <div class="label">用户名:</div>
- <input id="username" type="text">
- <div class="label">密码:</div>
- <input id="password" type="password">
- <button class="login-button">登录</button>
- </div>
- <script type="text/javascript" src="js/options.js"></script>
- </body>
- </html>
|