summaryrefslogtreecommitdiff
path: root/UI/get_password.html
blob: 774caea3ebdcfed9391397e42f7977c61ff3f49a (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">
  14. <!--
  15. function focus_input(){
  16. document.getpassword.password.focus();
  17. }
  18. // End -->
  19. </script>
  20. </head>
  21. <body onload="focus_input()">
  22. <?lsmb IF sessionexpired ?>
  23. <p><span class="warning_label">
  24. <?lsmb text('Session expired!') ?>
  25. </span></p>
  26. <?lsmb END ?>
  27. <form method="post" action="<?lsmb script ?>" name="getpassword">
  28. <div>
  29. <span align=right class="label"> <?lsmb text('Password') ?> </span>
  30. <span class="input"><input type="password" name="password" size="30"/>
  31. </span>
  32. <span class="input"><button type="submit" value="continue">
  33. <?lsmb text('Continue') ?>
  34. </button></span>
  35. </div>
  36. <?lsmb FOREACH var = hidden ?>
  37. <input name="<?lsmb var.name ?>" type="hidden" value="<?lsmb var.value ?>" />
  38. <?lsmb END ?>
  39. </form>
  40. </body>
  41. </html>