login.html 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no">
  6. <meta content="yes" name="apple-mobile-web-app-capable">
  7. <meta content="black" name="apple-mobile-web-app-status-bar-style">
  8. <meta content="telephone=no" name="format-detection">
  9. <title>{{data['setting']['name']}}</title>
  10. <meta name="Keywords" content="" />
  11. <meta name="Description" content="" />
  12. <link href="{{static_url('mobile/css/global.css')}}" rel="stylesheet">
  13. <link href="{{static_url('pc/lib/layer/hint.css')}}" rel="stylesheet">
  14. <link href="{{static_url('mobile/css/login.css')}}" rel="stylesheet">
  15. </head>
  16. <body>
  17. <section class="logo">
  18. <img src="{{static_url('mobile/images/bdc1f518.logo.jpg')}}" width="100%" />
  19. </section>
  20. <section>
  21. <form class="form" id="form1" name="form1" action="/user/login" method="post" target="f1">
  22. {% module xsrf_form_html() %}
  23. <input type="hidden" name="function" id="function" value="msg"/>
  24. <input type="hidden" name="url" id="url" value="/device" />
  25. <iframe id="f1" name="f1" style="display:none;"></iframe>
  26. <ul>
  27. <li class="form-input">
  28. <label>手机号</label>
  29. <input type="text" id="username" name="username" placeholder="请填写手机号码">
  30. </li>
  31. <li class="form-input">
  32. <label>安全码</label>
  33. <input type="password" id="password" name="password" placeholder="请填写安全码">
  34. </li>
  35. </ul>
  36. <label class="form-label-checkbox" style="display:none;"><input type="checkbox" name=""><span>保存账号密码</span></label>
  37. <input type="button" onclick="$('#form1').submit()" class="button primary" value="确认">
  38. <p class="tip">没有安全码?请查看设备说明书</p>
  39. </form>
  40. </section>
  41. {%include 'inc/script.html'%}
  42. </body>
  43. </html>