1 <?php $this->includeTemplate($GLOBALS['top_include']); ?>
3 <form action="<?php echo $formaction; ?>" method="post">
4 <div><input type="hidden" name="query" value="<?php echo $querystring; ?>" /></div>
7 <th align="left"><label for="username"><?php echo T_('Username'); ?></label></th>
8 <td><input type="text" id="username" name="username" size="20" value="<?php echo htmlentities($_POST['username']); ?>" /></td>
12 <th align="left"><label for="password"><?php echo T_('Password'); ?></label></th>
13 <td><input type="password" id="password" name="password" size="20" /></td>
14 <td><label><input type="checkbox" name="keeppass" value="yes" /> <?php echo T_("Keep me logged in"); ?>.</label></td>
18 <td><input type="submit" name="submitted" value="<?php echo T_('Log In'); ?>" /></td>
22 <p>» <a href="<?php echo $GLOBALS['root'] ?>password.php"><?php echo T_('Forgotten your password?') ?></p>
24 <script type="text/javascript">
26 $("#username").focus();
30 <?php $this->includeTemplate($GLOBALS['bottom_include']); ?>