Form Login Webmail RoundCube


SUBMITTED BY: Guest

DATE: May 12, 2014, 4:01 p.m.

FORMAT: Text only

SIZE: 1.7 kB

HITS: 1137

  1. Stylesheet css, place betwen <HEAD>...</HEAD>
  2. ------------------------------------
  3. <style type="text/css">
  4. #login-form {
  5. margin-left: auto;
  6. margin-right: auto;
  7. margin-top: 50px;
  8. width: 380px;
  9. border: 1px solid #999;
  10. }
  11. #login-form table td.title
  12. {
  13. color: #666;
  14. text-align: right;
  15. padding-right: 10px;
  16. }
  17. .boxcontent {
  18. padding: 20px 20px 10px 20px;
  19. }
  20. .boxtitle
  21. {
  22. height: 12px !important;
  23. padding: 4px 20px 3px 20px;
  24. border-bottom: 1px solid #999;
  25. color: #333;
  26. font-size: 11px;
  27. font-weight: bold;
  28. background-color: #EBEBEB;
  29. }
  30. </style>
  31. -------------------------------------------
  32. Tag div for form login webmail, place betwen <BODY>...</BODY>
  33. --------------------------------------------------
  34. <div id="login-form">
  35. <div>Login Webmail</div>
  36. <div>
  37. <form name="form" action="http://yourdomain.com/webapps/webmail2/index.php" method="post">
  38. <input name="_action" value="login" type="hidden"><input name="_timezone" id="rcmlogintz" value="7" type="hidden">
  39. <table summary="" border="0"><tbody><tr><td><label for="rcmloginuser">Username</label>
  40. </td>
  41. <td><input name="_user" id="rcmloginuser" size="30" autocomplete="off" type="text"></td>
  42. </tr>
  43. <tr><td><label for="rcmloginpwd">Password</label>
  44. </td>
  45. <td><input name="_pass" id="rcmloginpwd" size="30" autocomplete="off" type="password"></td>
  46. </tr>
  47. </tbody>
  48. </table>
  49. <p style="text-align: center;"><input value="Login" type="submit"></p>
  50. </form>
  51. </div>
  52. </div>
  53. ---------------------------------------------------------

comments powered by Disqus