Jump to content

Authentification AJAX via JQuery


Recommended Posts

Bonjour à tous,

Voilà j'aimerais mettre en place un système d'authentification "AJAX" à mon site presta visuellement un peu comme sur ce site.

Je sais que la page d'authentification est authentification.php jusque là tout va bien. Via JQuery il serait donc possible d'envoyer (poster) le formulaire en AJAX et donc ne pas avoir de rechargement de la page ni de redirection. Mais ma question arrive à ce point, suis-je connecté ?? A priori oui, du coup comment rafraichir visuellement par exemple le blockuserinfo pour qu'il marque "bonjour, Dupont" ?

Merci d'avance pour vos réponses,

Link to comment
Share on other sites

  • 2 weeks later...

I am also looking at this problem, i will let you know if i work out a solution (i can't find much about it in the forum).

If anyone else could shed light on this problem in the meantime it would be much appreciated!


p.s. your title should read "Authentication AJAX via JQuery", i would also suggest adding the word "login" to improve searching.

Link to comment
Share on other sites

Il faut juste charger le contenu de la réponse AJAX dans le bloc userinfos.
De ce fait, le script appelé en AJAX doit renvoyer les informations sur l'utilisateur, puis dans la partie success de l'AJAX, tu remplis le userinfos.
Par exemple :
success : function(data) {
$('#userinfos').html(data);
}

Enfin un truc du genre...

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...