-
Notifications
You must be signed in to change notification settings - Fork 0
/
loginform.html
38 lines (35 loc) · 1.3 KB
/
loginform.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html{if="$language !== 'auto'"} lang="{$language}"{/if}>
<head>
{include="includes"}
</head>
<body>
{include="page.header"}
<div class="pure-g pure-g-full">
<div class="pure-u-2-24"></div>
<form method="post" name="loginform" id="login-form" class="page-form pure-u-20-24 login-form-container">
<h2 class="window-title">{'Login'|t}</h2>
<div>
<input type="text" name="login" aria-label="{'Username'|t}" placeholder="{'Username'|t}"
{if="!empty($username)"}value="{$username}"{/if} class="autofocus" autocapitalize="off">
</div>
<div>
<input type="password" name="password" aria-label="{'Password'|t}" placeholder="{'Password'|t}" class="autofocus">
</div>
<div class="remember-me">
<label class="checkbox">
<input type="checkbox" name="longlastingsession" id="longlastingsessionform" {if="$remember_user_default"}checked="checked"{/if}>
{'Remember me'|t}
</label>
</div>
<div class="submit-buttons">
<input type="submit" value="{'Login'|t}" class="bigbutton">
</div>
<input type="hidden" name="token" value="{$token}">
{if="$returnurl"}<input type="hidden" name="returnurl" value="{$returnurl}">{/if}
</form>
</div>
</div>
{include="page.footer"}
</body>
</html>