CINXE.COM
移动云平台
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>移动云平台</title> <meta name="description" content="移动云平台"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link href="/css/login/login.css?v=20160114" rel="stylesheet"> </head> <body> <div class="header"> <div class="header-in"> <div class="logo"> <img src="/img/login/logo.png"> <span class="version">6.0</span> </div> </div> </div> <div class="main"> <div class="main-in"> <img src="/img/login/iPhone.png" class="fl"> <div class="form-div"> <input type="text" placeholder="用户名" name="txtzhsjnum" id="txtzhsjnum" autocomplete="on"> <input type="password" placeholder="密码" name="txtloginpwd" id="txtloginpwd" autocomplete="on"> <p class="error info"></p> <a href="javascript:;" class="btn" id="login-button">登 录</a> </div> </div> </div> <div class="footer"> <p>© 2025 云悦PaaS平台 ydy.zhongsou.com COPYRIGHT 2025 ALL Rights Reserved.</p> <p>客服电话:400 770 6677 公司名称:北京云悦共创网络技术有限公司</p> </div> <script type="text/javascript" src="/js/common/jquery-1.10.2.min.js?v=20160114"></script> <script type="text/javascript"> function submitLogin() { var userid = "0"; if(userid!=0){ window.location.href="http://ydy.zhongsou.com/Applist/index?rand="+Math.random(); return; } if($('.info').is(":visible")) { $('.info').text(''); } var name=$("input[name='txtzhsjnum']").val(); var password=$("input[name='txtloginpwd']").val(); if(name.length <1||name == '用户'){ $(".info").text("请输入用户名!"); return; } if(password.length <1|| password=='密码'){ $(".info").text("请输入密码!"); return; } if(password.length <6){ $(".info").text("密码为6-16位字母数字"); return; } $.ajax({ type:"post", url:"http://ydy.zhongsou.com/login/login?r="+Math.random(), data:"name="+name+"&password="+password, success:function(msg){ res = eval('(' + msg + ')'); if(res.code==1){ window.location.href="http://ydy.zhongsou.com/Applist/index?ran="+Math.random(); }else{ $(".info").text(res.msg); } } }); } $(function(){ $('#txtzhsjnum,#txtloginpwd').on('keyup',function(e){ if(e.keyCode==13) { submitLogin(); } }); $(document).on('click','#login-button',function(event){ submitLogin(); }); }); </script> </body> </html>