blob: 43e57effa53e9509f488746b0ccfd2407f038acc (
plain)
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
- <head>
- <title><?lsmb titlebar ?></title>
- <meta http-equiv="Pragma" content="no-cache" />
- <meta http-equiv="Expires" content="-1" />
- <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
- <link rel="stylesheet" href="css/<?lsmb stylesheet ?>" type="text/css" />
-
- <meta http-equiv="content-type"
- content="text/html; charset=utf-8" />
- <meta name="robots" content="noindex,nofollow" />
- <script language="JavaScript" type="text/javascript" src="UI/login.js" />
-
- <script language="JavaScript" type="text/javascript">
- <!--
- function focus_input(){
- document.getpassword.password.focus();
- }
- // End -->
- </script>
- <style>
- div.admin_login {
-
- align: center;
- }
-
- </style>
- </head>
- <body onload="focus_input()">
- <?lsmb IF sessionexpired ?>
- <p><span class="warning_label">
- <?lsmb text('Session expired!') ?>
- </span></p>
- <?lsmb END ?>
- <form method="post" action="<?lsmb script?>.pl" name="getpassword">
- <div class="admin_login">
- <span align=right class="label"> <?lsmb text('Password') ?> </span>
- <span class="input"><input type="password" name="password" size="30"/>
- </span>
- <span class="input"><button type="submit" name="action" value="continue">
- <?lsmb text('Continue') ?>
- </button></span>
- </div>
- <?lsmb FOREACH var = hidden ?>
- <input name="<?lsmb var.name ?>" type="hidden" value="<?lsmb var.value ?>" />
- <?lsmb END ?>
- </form>
- </body>
- </html>
|