Guest User

Untitled

a guest
Dec 26th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. <rml>
  2. <head>
  3. <title>Log In</title>
  4. <link type="text/template" href="window.rml" />
  5. <style>
  6. body
  7. {
  8. width: 500px;
  9. height: 225px;
  10.  
  11. margin: auto;
  12. }
  13.  
  14. div#title_bar
  15. {
  16. display: none;
  17. }
  18.  
  19. div#content
  20. {
  21. text-align: left;
  22. }
  23. </style>
  24. </head>
  25. <body template="window">
  26. <form onsubmit="store_creds">
  27. <div>
  28. <p>Username:
  29. <input id="username" type="text" name="username" size=16 maxlength=25></input>
  30. </p>
  31. <p>Password:
  32. <input id="password" type="password" name="password" size=16 maxlength=25></input>
  33. </p>
  34. <p>
  35. <input id="remember" type="checkbox" name="remember"></input>
  36. Remember username
  37. </p>
  38. </div>
  39. <input type="submit" value="accept">Log In</input>
  40. <input type="submit" value="cancel">Quit</input>
  41. </form>
  42. </body>
  43. </rml>
Add Comment
Please, Sign In to add comment