php-mpos/public/templates/test/login/small.tpl
Sebastian Grewe 8224f6148e [IMPROVEMENT] @nrpatten supplied better quicklogin
* Needs to be fixed to properly use fieldset tags
2013-09-18 15:50:49 +02:00

18 lines
695 B
Smarty

{if $smarty.session.AUTHENTICATED|default:"0" == 0}
<div class="login_small">
<form action="{$smarty.server.PHP_SELF}" method="post" id="loginForm">
<input type="hidden" name="page" value="login" />
<input type="hidden" name="to" value="{$smarty.server.PHP_SELF}?page=dashboard" />
<fieldset2 class="small">
<label>Username</label>
<input type="text" name="username" size="22" maxlength="20" required />
<fieldset2 class="small">
<label>Password</label>
<input type="password" name="password" size="22" maxlength="20" required />
</fieldset2>
</fieldset2>
<input type="submit" value="Login" class="alt_btn" />
</form>
</div>
{/if}