You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LoginPage.html 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml"
  3. xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.3-strict.dtd"
  4. xml:lang="en"
  5. lang="en">
  6. <!-- Head with Wicket-controlled resources in this package -->
  7. <wicket:head>
  8. <title wicket:id="title">[page title]</title>
  9. <wicket:link>
  10. <link rel="stylesheet" type="text/css" href="resources/gitblit.css"/>
  11. <link rel="shortcut icon" href="resources/gitblt-favicon.png" type="image/png" />
  12. </wicket:link>
  13. </wicket:head>
  14. <body onload="document.getElementById('username').focus();">
  15. <div>
  16. <div style="padding-top: 10px;text-align:center;">
  17. <wicket:link>
  18. <img src="resources/gitblt_25.png" alt="Git:Blit"/><br/>
  19. </wicket:link>
  20. <div style="padding-top:30px;font-weight:bold;" wicket:id="name">[name]</div>
  21. </div>
  22. <form style="text-align:center;" wicket:id="loginForm">
  23. <div>
  24. <p/>
  25. <wicket:message key="gb.username"></wicket:message> &nbsp;
  26. <input type="text" id="username" wicket:id="username" value=""/>
  27. <p/>
  28. <wicket:message key="gb.password"></wicket:message> &nbsp;
  29. <input type="password" wicket:id="password" value=""/>
  30. <p/>
  31. <input type="submit" value="Login" wicket:message="value:gb.login" />
  32. <div style="padding-top:10px;" wicket:id="feedback"></div>
  33. </div>
  34. </form>
  35. </div>
  36. </body>
  37. </html>