| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html" charset="utf-8" />
- <title>纵横知道·通行证</title>
- <link href="{{rootUrl}}global/css/globalLayout.css" rel="stylesheet" type="text/css" />
- <script src="{{rootUrl}}global/js/jquery-1.7.2.min.js"></script>
- <script src="{{rootUrl}}global/js/jquery.validate.js"></script>
- <script type="text/javascript">
- $(function(){
- $("#loginform").validate({
- rules: {
- zhusername: {
- required: true
- },
- zhuserpasswd: {
- required: true,
- minlength: 6
- }
- },
- messages: {
- zhusername:{
- required:"请填写您的帐号/邮箱"
- },
- zhuserpasswd:{
- required:"请输入密码",
- minlength: "密码长度不能小于6"
- }
- },
- errorElement: "span",// 错误信息容器标签
- errorClass: "erroT",
- validClass: "inputSus",
- onkeyup: false
- });
- });
- </script>
- </head>
- <body>
- <div class="warpBody">
- <div class="header">
- <a href="{{rootUrl}}" title="返回首页" class="logoLink"><div class="logo"></div></a>
- </div>
- <div class="formItem">
- 此功能暂未开放
- </div>
- <!-- include 'footer' -->
- </div>
- </body>
- </html>
|