1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>一键登录页</title>
- <meta content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no" name="viewport">
- <meta content="width=device-width,height=device-height,maximum-scale=1.0,user-scalable=no" name="viewport">
- <meta content="yes" name="apple-mobile-web-app-capable">
- <meta content="black" name="apple-mobile-web-app-status-bar-style">
- <meta content="telephone=no" name="format-detection">
- <script type="text/javascript">
- var deviceWidth = document.documentElement.clientWidth;
- if (deviceWidth > 750) {
- deviceWidth = 750;
- }
- document.documentElement.style.fontSize = deviceWidth / 7.5 + 'px';
- </script>
- </head>
- <style>
- h1 {
- font-size: 0.36rem;
- width: 100%;
- text-align: center;
- }
-
- p {
- font-size: 0.28rem;
- line-height: 0.5rem;
- margin-bottom: 0.6rem;
- }
-
- .box {
- width: 100%;
- }
-
- .on {
- position: absolute;
- top: 0.25rem;
- left: 0.75rem;
- width: 0.18rem;
- height: 0.32rem;
- }
-
- .main-order {
- margin-top: 0.8rem;
- }
- </style>
- <link rel="stylesheet" href="./succinic.css">
- <body>
- <img class="on" onclick="a()" src="./img/fan2x.png"></img>
- <div class="box">
- <div class="main main-order">
- <div class="sms-form">
- <div class="form-group">
- <div class="input-row">
- <input class="usermob" type="tel" maxlength="11" name="phone" placeholder="请输入您的手机号码" />
- </div>
- <div class="input-row">
- <input class="smscode" type="tel" maxlength="6" name="sms" placeholder="请输入验证码">
- <span class="sendcode">获取验证码</span>
- </div>
- <div class="actions">
- <div class="btn login">登录</div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <script src="../public/libs/jquery-min.js"></script>
- <script src="./succinic.js?v=202210"></script>
- <script>
- function a() {
- window.history.go(-1)
- }
- </script>
- </body>
- </html>
|