Subversion Repositories eFlore/Applications.del

Rev

Rev 1473 | Rev 1496 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1473 Rev 1474
Line 82... Line 82...
82
		String id = Cookies.getCookie("del_id");
82
		String id = Cookies.getCookie("del_id");
83
		String prenom = Cookies.getCookie("del_prenom");
83
		String prenom = Cookies.getCookie("del_prenom");
84
		String nom = Cookies.getCookie("del_nom");
84
		String nom = Cookies.getCookie("del_nom");
85
		String courriel = Cookies.getCookie("del_courriel");
85
		String courriel = Cookies.getCookie("del_courriel");
Line 86... Line -...
86
 
-
 
87
		Window.alert("Id: " + id + ", prenom: " + prenom + ", nom: " + nom + ", courriel: " + courriel);
-
 
88
 
86
 
89
		if (id != null && prenom != null && nom != null && courriel != null) {
-
 
90
			Window.alert("recréation");
87
		if (id != null && prenom != null && nom != null && courriel != null) {
91
			utilisateur = new Utilisateur(id, prenom, nom, courriel);
88
			utilisateur = new Utilisateur(id, prenom, nom, courriel);
Line 92... Line 89...
92
		}
89
		}
93
 
90