You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

98 lines
4.1 KiB

8 years ago
  1. <!DOCTYPE html><html><head><meta http-equiv="content-type" content="text/html;charset=utf-8"/>
  2. <title>登录</title><meta name="keywords" content="关键词"><meta name="description" content="描述"><meta content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=0" name="viewport">
  3. <link href="<?php echo env('APP_URL'); ?>/css/weixin/style.css" type="text/css" rel="stylesheet">
  4. <script type="text/javascript" src="<?php echo env('APP_URL'); ?>/js/jquery.min.js"></script>
  5. <script type="text/javascript" src="<?php echo env('APP_URL'); ?>/js/weixin/mobile.js"></script>
  6. <link href="<?php echo env('APP_URL'); ?>/css/font-awesome.min.css" type="text/css" rel="stylesheet"></head><body>
  7. <div class="classreturn loginsignup">
  8. <div class="ds-in-bl return"><a href="javascript:history.back(-1);"><img src="<?php echo env('APP_URL'); ?>/images/weixin/return.png" alt="返回"></a></div>
  9. <div class="ds-in-bl tit center"><span>登录</span></div>
  10. <div class="ds-in-bl nav_menu"><a href="javascript:void(0);"><img src="<?php echo env('APP_URL'); ?>/images/weixin/class1.png" alt="菜单"></a></div>
  11. </div>
  12. <div class="flool tpnavf cl">
  13. <div class="nav_list">
  14. <ul>
  15. <a href="index.html"><li><img src="<?php echo env('APP_URL'); ?>/images/weixin/home_icon.png"><p>首页</p></li></a>
  16. <a href="/Weixin/index.php?m=Store&amp;a=index"><li><img src="<?php echo env('APP_URL'); ?>/images/weixin/brand_icon.png"><p>分类</p></li></a>
  17. <a href="/Weixin/index.php?m=Cart&amp;a=index"><li><img src="<?php echo env('APP_URL'); ?>/images/weixin/car_icon.png"><p>购物车</p></li></a>
  18. <a href="/Weixin/index.php?m=User&amp;a=index"><li><img src="<?php echo env('APP_URL'); ?>/images/weixin/center_icon.png"><p>个人中心</p></li></a></ul>
  19. <div class="cl"></div>
  20. </div>
  21. </div>
  22. <style>
  23. .account{text-align:center;margin-top:50px;}
  24. .account .icon{color:#FFCC00;font-size:100px;}
  25. .bottoma{display:block;font-size:18px;padding:10px;border-radius:2px;}
  26. .adr_add{margin:0 10px;}
  27. .adr-form-group{margin-top:10px;}
  28. .adr-form-group input[type=text],.adr-form-group input[type=password]{display:block;width:100%;font-size:16px;padding:12px;color:#777;vertical-align:middle;background-color:#fff;background-image:none;border:1px solid #ddd;border-radius:0;box-sizing:border-box;}
  29. </style>
  30. <div class="floor account">
  31. <div class="icon"><i class="fa fa-user-circle" aria-hidden="true"></i></div>
  32. <br>
  33. <div class="adr_add">
  34. <div class="adr-form-group">
  35. <input type="text" name="username" class="" id="username" placeholder="请输入账号">
  36. </div>
  37. <div class="adr-form-group">
  38. <input type="password" name="password" class="" id="password" placeholder="请输入密码">
  39. </div>
  40. </div>
  41. <a style="margin:10px;background-color:#1aad19;text-align:center;color:white;border:1px solid #179e16;" class="bottoma" href="javascript:submit();">登录</a>
  42. </div>
  43. <script type="text/javascript" src="<?php echo env('APP_URL'); ?>/js/layer/mobile/layer.js"></script>
  44. <script>
  45. function submit()
  46. {
  47. var username = $("#username").val();
  48. var password = $("#password").val();
  49. if(username == '')
  50. {
  51. //提示
  52. layer.open({
  53. content: '账号不能为空'
  54. ,skin: 'msg'
  55. ,time: 2 //2秒后自动关闭
  56. });
  57. return false;
  58. }
  59. if(password == '')
  60. {
  61. //提示
  62. layer.open({
  63. content: '密码不能为空'
  64. ,skin: 'msg'
  65. ,time: 2 //2秒后自动关闭
  66. });
  67. return false;
  68. }
  69. $.post(url,{name:name,mobile:mobile,address:address,province:province,city:city,district:district,is_default:is_default},function(res)
  70. {
  71. if(res.code==0)
  72. {
  73. //提示
  74. layer.open({
  75. content: res.msg
  76. ,skin: 'msg'
  77. ,time: 2 //2秒后自动关闭
  78. });
  79. window.history.back();
  80. }
  81. else
  82. {
  83. }
  84. },'json');
  85. }
  86. </script>
  87. @include('weixin.common.footer')
  88. </body></html>