Prefill the login field when the authentication has failed
This commit is contained in:
parent
dbcd06e988
commit
85c4bdc235
2 changed files with 17 additions and 5 deletions
|
@ -495,9 +495,9 @@ function ban_canLogin()
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
ban_loginFailed();
|
ban_loginFailed();
|
||||||
$redir = '';
|
$redir = '&username='. $_POST['login'];
|
||||||
if (isset($_GET['post'])) {
|
if (isset($_GET['post'])) {
|
||||||
$redir = '?post=' . urlencode($_GET['post']);
|
$redir .= '&post=' . urlencode($_GET['post']);
|
||||||
foreach (array('description', 'source', 'title') as $param) {
|
foreach (array('description', 'source', 'title') as $param) {
|
||||||
if (!empty($_GET[$param])) {
|
if (!empty($_GET[$param])) {
|
||||||
$redir .= '&' . $param . '=' . urlencode($_GET[$param]);
|
$redir .= '&' . $param . '=' . urlencode($_GET[$param]);
|
||||||
|
@ -943,6 +943,9 @@ function renderPage()
|
||||||
if ($GLOBALS['config']['OPEN_SHAARLI']) { header('Location: ?'); exit; } // No need to login for open Shaarli
|
if ($GLOBALS['config']['OPEN_SHAARLI']) { header('Location: ?'); exit; } // No need to login for open Shaarli
|
||||||
$token=''; if (ban_canLogin()) $token=getToken(); // Do not waste token generation if not useful.
|
$token=''; if (ban_canLogin()) $token=getToken(); // Do not waste token generation if not useful.
|
||||||
$PAGE->assign('token',$token);
|
$PAGE->assign('token',$token);
|
||||||
|
if (isset($_GET['username'])) {
|
||||||
|
$PAGE->assign('username', escape($_GET['username']));
|
||||||
|
}
|
||||||
$PAGE->assign('returnurl',(isset($_SERVER['HTTP_REFERER']) ? escape($_SERVER['HTTP_REFERER']):''));
|
$PAGE->assign('returnurl',(isset($_SERVER['HTTP_REFERER']) ? escape($_SERVER['HTTP_REFERER']):''));
|
||||||
$PAGE->renderPage('loginform');
|
$PAGE->renderPage('loginform');
|
||||||
exit;
|
exit;
|
||||||
|
|
|
@ -2,7 +2,13 @@
|
||||||
<html>
|
<html>
|
||||||
<head>{include="includes"}</head>
|
<head>{include="includes"}</head>
|
||||||
<body
|
<body
|
||||||
{if="ban_canLogin()"} onload="document.loginform.login.focus();"{/if}>
|
{if="ban_canLogin()"}
|
||||||
|
{if="empty($username)"}
|
||||||
|
onload="document.loginform.login.focus();"
|
||||||
|
{else}
|
||||||
|
onload="document.loginform.password.focus();"
|
||||||
|
{/if}
|
||||||
|
{/if}>
|
||||||
<div id="pageheader">
|
<div id="pageheader">
|
||||||
{include="page.header"}
|
{include="page.header"}
|
||||||
|
|
||||||
|
@ -11,8 +17,11 @@
|
||||||
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 for="password">Password: <input type="password" id="password" name="password" tabindex="2"></label>
|
{if="!empty($username)"}value="{$username}"{/if}>
|
||||||
|
</label>
|
||||||
|
<label for="password">Password: <input type="password" id="password" name="password" tabindex="2">
|
||||||
|
</label>
|
||||||
<input type="submit" value="Login" class="bigbutton" tabindex="4">
|
<input type="submit" value="Login" class="bigbutton" tabindex="4">
|
||||||
<label for="longlastingsession">
|
<label for="longlastingsession">
|
||||||
<input type="checkbox" name="longlastingsession" id="longlastingsession" tabindex="3">
|
<input type="checkbox" name="longlastingsession" id="longlastingsession" tabindex="3">
|
||||||
|
|
Loading…
Reference in a new issue