2011-08-08 19:57:45 +04:00
|
|
|
<form action="index.php" method="post">
|
|
|
|
<fieldset>
|
|
|
|
<?php if($_['error']): ?>
|
2011-10-03 22:41:52 +04:00
|
|
|
<a href="./core/lostpassword/"><?php echo $l->t('Lost your password?'); ?></a>
|
2011-08-08 19:57:45 +04:00
|
|
|
<?php endif; ?>
|
2011-10-03 16:41:55 +04:00
|
|
|
<p class="infield">
|
|
|
|
<label for="user" class="infield"><?php echo $l->t( 'Username' ); ?></label>
|
|
|
|
<input type="text" name="user" id="user" value="<?php echo !empty($_POST['user'])?$_POST['user'].'"':'" autofocus'; ?> autocomplete="off" required />
|
|
|
|
</p>
|
|
|
|
<p class="infield">
|
|
|
|
<label for="password" class="infield"><?php echo $l->t( 'Password' ); ?></label>
|
|
|
|
<input type="password" name="password" id="password" value="" required <?php echo !empty($_POST['user'])?'autofocus':''; ?> />
|
|
|
|
</p>
|
2011-10-01 13:08:49 +04:00
|
|
|
<input type="checkbox" name="remember_login" value="1" id="remember_login" /><label for="remember_login"><?php echo $l->t('remember'); ?></label>
|
2011-09-30 22:23:59 +04:00
|
|
|
<input type="submit" id="submit" class="login" value="<?php echo $l->t( 'Log in' ); ?>" />
|
2011-08-08 19:57:45 +04:00
|
|
|
</fieldset>
|
|
|
|
</form>
|