pay.html 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html" charset="utf-8" />
  5. <title>纵横知道·通行证</title>
  6. <link href="{{rootUrl}}global/css/globalLayout.css" rel="stylesheet" type="text/css" />
  7. <script src="{{rootUrl}}global/js/jquery-1.7.2.min.js"></script>
  8. <script src="{{rootUrl}}global/js/jquery.validate.js"></script>
  9. <script type="text/javascript">
  10. $(function(){
  11. $("#loginform").validate({
  12. rules: {
  13. zhusername: {
  14. required: true
  15. },
  16. zhuserpasswd: {
  17. required: true,
  18. minlength: 6
  19. }
  20. },
  21. messages: {
  22. zhusername:{
  23. required:"请填写您的帐号/邮箱"
  24. },
  25. zhuserpasswd:{
  26. required:"请输入密码",
  27. minlength: "密码长度不能小于6"
  28. }
  29. },
  30. errorElement: "span",// 错误信息容器标签
  31. errorClass: "erroT",
  32. validClass: "inputSus",
  33. onkeyup: false
  34. });
  35. });
  36. </script>
  37. </head>
  38. <body>
  39. <div class="warpBody">
  40. <div class="header">
  41. <a href="{{rootUrl}}" title="返回首页" class="logoLink"><div class="logo"></div></a>
  42. </div>
  43. <div class="formItem">
  44. 此功能暂未开放
  45. </div>
  46. <!-- include 'footer' -->
  47. </div>
  48. </body>
  49. </html>