auth.gsp
上传用户:steveyhw
上传日期:2019-05-13
资源大小:307k
文件大小:2k
源码类别:

PlugIns编程

开发平台:

Java

  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
  4. <meta name="layout" content="main" />
  5. <title><g:message code="login" default="Login" /></title>
  6. <style type="text/css" media="screen">
  7. #login {
  8. margin:15px 0px; padding:0px;
  9. text-align:center;
  10. }
  11. #login .inner {
  12. width:260px;
  13. margin:0px auto;
  14. text-align:left;
  15. padding:10px;
  16. border-top:1px dashed #499ede;
  17. border-bottom:1px dashed #499ede;
  18. background-color:#EEF;
  19. }
  20. #login .inner .fheader {
  21. padding:4px;margin:3px 0px 3px 0;color:#2e3741;font-size:14px;font-weight:bold;
  22. }
  23. #login .inner .cssform p{
  24. clear: left;
  25. margin: 0;
  26. padding: 5px 0 8px 0;
  27. padding-left: 105px;
  28. border-top: 1px dashed gray;
  29. margin-bottom: 10px;
  30. height: 1%;
  31. }
  32. #login .inner .cssform input[type="text"]{ 
  33. width: 120px;
  34. }
  35. #login .inner .cssform label{
  36. font-weight: bold;
  37. float: left;
  38. margin-left: -105px; 
  39. width: 100px;
  40. }
  41. #login .inner .login_message {color:red;}
  42. #login .inner .text_ {width:120px;}
  43. #login .inner .chk {height:12px;}
  44. </style>
  45. </head>
  46. <body>
  47. <div id="login">
  48. <div class="inner">
  49. <g:if test="${flash.message}">
  50. <div class="login_message">${flash.message}</div>
  51. </g:if>
  52. <div class="fheader"><g:message code="login.please" default="Please Login.." /></div>
  53. <form action="../j_acegi_security_check" method="POST" id="loginForm" class="cssform">
  54. <p>
  55. <label for="j_username"><g:message code="register.loginname" default="Login ID" /></label>
  56. <input type='text' class="text_" name='j_username' value='' />
  57. </p>
  58. <p>
  59. <label for="j_password"><g:message code="register.password" default="Password" /></label>
  60. <input type='password' class="text_" name='j_password' value='' />
  61. </p>
  62. <p>
  63. <label for="j_password"><g:message code="login.remember" default="Remember me" /></label>
  64. <input type="checkbox" class="chk" name="_acegi_security_remember_me">
  65. </p>
  66. <p>
  67. <input type="submit" value="<g:message code="login" default="Login" />" />
  68. </p>
  69. </form>
  70. </div>
  71. </div>
  72. <script type="text/javascript" language="JavaScript">
  73. <!--
  74. (function(){
  75. var usernameElm = document.forms["loginForm"].elements["j_username"];
  76. usernameElm.focus();
  77. })();
  78. // -->
  79. </script>
  80. </body>
  81. </html>