diff options
author | neodarz <neodarz@neodarz.net> | 2017-05-24 15:23:11 +0200 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2017-05-24 15:23:11 +0200 |
commit | 96a660a21e47d43ebc473ce9d23e712c0e3e1261 (patch) | |
tree | 83f62bba16e51bfd64228b7d12076709bb7273f1 /loginform.html | |
download | shaarli_ascii-96a660a21e47d43ebc473ce9d23e712c0e3e1261.tar.xz shaarli_ascii-96a660a21e47d43ebc473ce9d23e712c0e3e1261.zip |
initil release
Diffstat (limited to 'loginform.html')
-rw-r--r-- | loginform.html | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/loginform.html b/loginform.html new file mode 100644 index 0000000..eb6d837 --- /dev/null +++ b/loginform.html @@ -0,0 +1,50 @@ +<!DOCTYPE html> +<html> +<head> + {include="includes"} +</head> +<body> +{include="page.header"} +{if="!ban_canLogin($conf)"} +<div class="pure-g pure-alert pure-alert-error pure-alert-closable center"> + <div class="pure-u-2-24"></div> + <div class="pure-u-20-24"> + {'You have been banned after too many failed login attempts. Try again later.'|t} + </div> + <div class="pure-u-2-24"> + <i class="fa fa-times pure-alert-close"></i> + </div> +</div> +{else} + <div class="pure-g"> + <div class="pure-u-lg-1-3 pure-u-1-24"></div> + <div id="login-form" class="page-form page-form-light pure-u-lg-1-3 pure-u-22-24"> + <form method="post" name="loginform"> + <h2 class="window-title">{'Login'|t}</h2> + <div> + <input type="text" name="login" placeholder="{'Username'|t}" + {if="!empty($username)"}value="{$username}"{/if} class="autofocus" tabindex="20"> + </div> + <div> + <input type="password" name="password" placeholder="{'Password'|t}" class="autofocus" tabindex="21"> + </div> + <div class="remember-me"> + <input type="checkbox" name="longlastingsession" id="longlastingsessionform" + checked="checked" tabindex="22"> + <label for="longlastingsessionform">{'Remember me'|t}</label> + </div> + <div> + <input type="submit" value="{'Login'|t}" class="bigbutton" tabindex="23"> + </div> + <input type="hidden" name="token" value="{$token}"> + {if="$returnurl"}<input type="hidden" name="returnurl" value="{$returnurl}">{/if} + </form> + </div> + <div class="pure-u-lg-1-3 pure-u-1-8"></div> + </div> +{/if} + +{include="page.footer"} +</body> +</html> + |