Reindent the login template
This commit is contained in:
parent
6275a65969
commit
dbcd06e988
1 changed files with 19 additions and 18 deletions
|
@ -1,14 +1,15 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>{include="includes"}</head>
|
<head>{include="includes"}</head>
|
||||||
<body{if="ban_canLogin()"} onload="document.loginform.login.focus();"{/if}>
|
<body
|
||||||
|
{if="ban_canLogin()"} onload="document.loginform.login.focus();"{/if}>
|
||||||
<div id="pageheader">
|
<div id="pageheader">
|
||||||
{include="page.header"}
|
{include="page.header"}
|
||||||
|
|
||||||
<div id="headerform">
|
<div id="headerform">
|
||||||
{if="!ban_canLogin()"}
|
{if="!ban_canLogin()"}
|
||||||
You have been banned from login after too many failed attempts. Try later.
|
You have been banned from login after too many failed attempts. Try later.
|
||||||
{else}
|
{else}
|
||||||
<form method="post" name="loginform">
|
<form method="post" name="loginform">
|
||||||
<label for="login">Login: <input type="text" id="login" name="login" tabindex="1"></label>
|
<label for="login">Login: <input type="text" id="login" name="login" tabindex="1"></label>
|
||||||
<label for="password">Password: <input type="password" id="password" name="password" tabindex="2"></label>
|
<label for="password">Password: <input type="password" id="password" name="password" tabindex="2"></label>
|
||||||
|
@ -19,7 +20,7 @@
|
||||||
<input type="hidden" name="token" value="{$token}">
|
<input type="hidden" name="token" value="{$token}">
|
||||||
{if="$returnurl"}<input type="hidden" name="returnurl" value="{$returnurl}">{/if}
|
{if="$returnurl"}<input type="hidden" name="returnurl" value="{$returnurl}">{/if}
|
||||||
</form>
|
</form>
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue