<?php echo $header; ?>
<section class="login content">
<?php echo $messages; ?>
<form method="post" action="<?php echo admin_url('login'); ?>">
<input name="token" type="hidden" value="<?php echo $token; ?>">
<fieldset>
<p><label for="user"><?php echo __('users.username', 'Username'); ?>:</label>
<input autofocus placeholder="Username" autocapitalize="off" name="user" id="user"
value="<?php echo filter_var(Input::old('user'), FILTER_SANITIZE_STRING); ?>"></p>
<p><label for="pass"><?php echo __('users.password', 'Password'); ?>:</label>
<input placeholder="Password" type="password" name="pass" id="pass"></p>
<p class="buttons"><a href="<?php echo admin_url('amnesia'); ?>">
<?php echo __('users.forgotten_password', 'Forgotten your password?'); ?></a>
<button type="submit"><?php echo __('users.login', 'Login'); ?></button></p>
</fieldset>
</form>
</section>
<?php echo $footer; ?>