1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no">
- <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">
- <title>{{data['setting']['name']}}</title>
- <meta name="Keywords" content="" />
- <meta name="Description" content="" />
- <link href="{{static_url('mobile/css/global.css')}}" rel="stylesheet">
- <link href="{{static_url('pc/lib/layer/hint.css')}}" rel="stylesheet">
- <link href="{{static_url('mobile/css/login.css')}}" rel="stylesheet">
- </head>
- <body>
- <section class="logo">
- <img src="{{static_url('mobile/images/bdc1f518.logo.jpg')}}" width="100%" />
- </section>
- <section>
- <form class="form" id="form1" name="form1" action="/user/login" method="post" target="f1">
- {% module xsrf_form_html() %}
- <input type="hidden" name="function" id="function" value="msg"/>
- <input type="hidden" name="url" id="url" value="/device" />
- <iframe id="f1" name="f1" style="display:none;"></iframe>
- <ul>
- <li class="form-input">
- <label>手机号</label>
- <input type="text" id="username" name="username" placeholder="请填写手机号码">
- </li>
- <li class="form-input">
- <label>安全码</label>
- <input type="password" id="password" name="password" placeholder="请填写安全码">
- </li>
- </ul>
- <label class="form-label-checkbox" style="display:none;"><input type="checkbox" name=""><span>保存账号密码</span></label>
- <input type="button" onclick="$('#form1').submit()" class="button primary" value="确认">
- <p class="tip">没有安全码?请查看设备说明书</p>
- </form>
- </section>
- {%include 'inc/script.html'%}
- </body>
- </html>
|