git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@10628 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
vAugagneur
2011-11-23 22:44:15 +00:00
parent 49b2efe3a5
commit bc3f7c89a9
2 changed files with 43 additions and 53 deletions
+1 -1
View File
@@ -96,7 +96,7 @@
<img id="ajax-loader" src="../img/loader.gif" style="float:left;margin:2px 0 0 5px;display:none">
</span>
</div>
<div id="lost"><a href="#" onclick="$('#error').hide();$('#login').revertFlip();return false;">{l s='Back to login'}</a></div>
<div id="lost"><a href="#" onclick="displayLogin();return false;">{l s='Back to login'}</a></div>
</form>
</div>
<h2><a href="http://www.prestashop.com">&copy; Copyright by PrestaShop. all rights reserved.</a></h2>
+42 -52
View File
@@ -1,46 +1,46 @@
$(document).ready(function(){
if (document.getElementById('email'))
document.getElementById('email').focus();
$(document).ready(function() {
if (document.getElementById('email')) document.getElementById('email').focus();
//$("#login").effect( "slide", { direction: "up" }, 1000 );
});
function displayForgotPassword()
{
function displayForgotPassword() {
$('#error').hide();
$("#login").flip({
direction:'tb',
color : '#FFF',
direction: 'tb',
color: '#FFF',
content: $('#forgot_password')
})
}
function doAjaxLogin()
{
function displayLogin() {
$('#error').hide();
$('#ajax-loader').fadeIn('slow', function () {
$('#login').revertFlip();
return false;
}
function doAjaxLogin() {
$('#error').hide();
$('#ajax-loader').fadeIn('slow', function() {
$.ajax({
type:"POST",
type: "POST",
url: "ajax-tab.php",
async: true,
dataType: "json",
data : {
data: {
ajax: "1",
token: "",
controller: "AdminLogin",
submitLogin: "1",
passwd : $('#passwd').val(),
email : $('#email').val()
},
success : function(jsonData)
{
if (jsonData.hasErrors)
{
passwd: $('#passwd').val(),
email: $('#email').val()
},
success: function(jsonData) {
if (jsonData.hasErrors) {
displayErrors(jsonData.errors);
$('#login').effect("shake", { times:3 }, 300);
}
else
{
window.location.href = jsonData.redirect;
} else {
$("#login").effect("slide", {
direction: "up"
}, 1000, function() {
window.location.href = jsonData.redirect;
});
}
},
error: function(XMLHttpRequest, textStatus, errorThrown) {
@@ -50,34 +50,26 @@ function doAjaxLogin()
}
});
});
}
function doAjaxForgot()
{
function doAjaxForgot() {
$('#error').hide();
$('#ajax-loader').fadeIn('slow', function () {
$('#ajax-loader').fadeIn('slow', function() {
$.ajax({
type:"POST",
type: "POST",
url: "ajax-tab.php",
async: true,
dataType: "json",
data : {
data: {
ajax: "1",
token: "",
controller: "AdminLogin",
submitForgot: "1",
email_forgot: $('#email_forgot').val()
},
success : function(jsonData)
{
if (jsonData.hasErrors)
{
},
success: function(jsonData) {
if (jsonData.hasErrors) {
displayErrors(jsonData.errors);
$('#login').effect("shake", { times:3 }, 300);
}
else
{
} else {
window.location.href = jsonData.redirect;
}
},
@@ -89,16 +81,14 @@ function doAjaxForgot()
});
});
}
function displayErrors(errors)
{
str_errors = '<h3>'+(errors.length > 1 ? there_are : there_is )+' '+errors.length+' '+(errors.length > 1 ? label_errors : label_error )+'</h3><ol>';
for(error in errors)
//IE6 bug fix
if(error != 'indexOf')
str_errors += '<li>'+errors[error] + '</li>';
function displayErrors(errors) {
str_errors = '<h3>' + (errors.length > 1 ? there_are : there_is) + ' ' + errors.length + ' ' + (errors.length > 1 ? label_errors : label_error) + '</h3><ol>';
for (error in errors) //IE6 bug fix
if (error != 'indexOf') str_errors += '<li>' + errors[error] + '</li>';
$('#ajax-loader').fadeOut('slow');
$('#error').html(str_errors+'</ol>');
$('#error').html(str_errors + '</ol>');
$('#error').fadeIn();
$("#login").effect("shake", {
times: 4
}, 100);
}