summaryrefslogtreecommitdiff
path: root/UI/get_password.html
blob: 43e57effa53e9509f488746b0ccfd2407f038acc (plain)
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  4. <head>
  5. <title><?lsmb titlebar ?></title>
  6. <meta http-equiv="Pragma" content="no-cache" />
  7. <meta http-equiv="Expires" content="-1" />
  8. <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
  9. <link rel="stylesheet" href="css/<?lsmb stylesheet ?>" type="text/css" />
  10. <meta http-equiv="content-type"
  11. content="text/html; charset=utf-8" />
  12. <meta name="robots" content="noindex,nofollow" />
  13. <script language="JavaScript" type="text/javascript" src="UI/login.js" />
  14. <script language="JavaScript" type="text/javascript">
  15. <!--
  16. function focus_input(){
  17. document.getpassword.password.focus();
  18. }
  19. // End -->
  20. </script>
  21. <style>
  22. div.admin_login {
  23. align: center;
  24. }
  25. </style>
  26. </head>
  27. <body onload="focus_input()">
  28. <?lsmb IF sessionexpired ?>
  29. <p><span class="warning_label">
  30. <?lsmb text('Session expired!') ?>
  31. </span></p>
  32. <?lsmb END ?>
  33. <form method="post" action="<?lsmb script?>.pl" name="getpassword">
  34. <div class="admin_login">
  35. <span align=right class="label"> <?lsmb text('Password') ?> </span>
  36. <span class="input"><input type="password" name="password" size="30"/>
  37. </span>
  38. <span class="input"><button type="submit" name="action" value="continue">
  39. <?lsmb text('Continue') ?>
  40. </button></span>
  41. </div>
  42. <?lsmb FOREACH var = hidden ?>
  43. <input name="<?lsmb var.name ?>" type="hidden" value="<?lsmb var.value ?>" />
  44. <?lsmb END ?>
  45. </form>
  46. </body>
  47. </html>