44 lines
1.9 KiB
HTML
44 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html{if="$language !== 'auto'"} lang="{$language}"{/if}>
|
|
<head>
|
|
{$pageName="loginform"}
|
|
{include="includes"}
|
|
</head>
|
|
<body>
|
|
{include="page.header"}
|
|
|
|
<div id="headerform" class="page-login container">
|
|
<div class="row">
|
|
<div class="col-md-6 col-md-offset-3">
|
|
<form method="post" name="loginform" class="card">
|
|
<div class="card-title">{'Login'|t}</div>
|
|
<div class="card-body">
|
|
<div class="form-entry">
|
|
<label for="login">{'Username'|t}</label><br/>
|
|
<input type="text" name="login" id="login" {if="empty($username)"}class="autofocus"{/if} tabindex="1" {if="!empty($username)"}value="{$username}"{/if}>
|
|
</div>
|
|
<div class="form-entry">
|
|
<label for="password">{'Password'|t}</label><br/>
|
|
<input type="password" name="password" id="password" {if="!empty($username)"}class="autofocus"{/if} tabindex="2" >
|
|
</div>
|
|
<div class="form-entry">
|
|
<input type="checkbox" class="filled-in" name="longlastingsession" id="longlastingsession" tabindex="3"
|
|
{if="$remember_user_default"}checked="checked"{/if}>
|
|
<label for="longlastingsession">{'Remember me'|t}</label>
|
|
</div>
|
|
</div>
|
|
<div class="card-footer">
|
|
<button type="submit" class="button-raised button-primary pull-right" tabindex="4">{'Login'|t}</button>
|
|
<input type="hidden" name="token" value="{$token}">
|
|
{if="$returnurl"}<input type="hidden" name="returnurl" value="{$returnurl}">{/if}
|
|
<div class="clearfix"></div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{include="page.footer"}
|
|
</body>
|
|
</html>
|