2 // Copyright 2008 Grégory Burri
4 // This file is part of Euphorik.
6 // Euphorik is free software: you can redistribute it and/or modify
7 // it under the terms of the GNU General Public License as published by
8 // the Free Software Foundation, either version 3 of the License, or
9 // (at your option) any later version.
11 // Euphorik is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License
17 // along with Euphorik. If not, see <http://www.gnu.org/licenses/>.
19 function PageRegister(client
, formateur
, util
)
24 this.formateur
= formateur
28 PageRegister
.prototype.contenu = function()
31 <form action="" id="register" >\
35 <td><input class="login" type="text" size="20" maxlength="20"/><input class="captcha" name="captcha" type="text" size="12"></input>\</td>\
39 <td><input class="password" type="password" size="20" maxlength="20"/></td>\
43 <td><input class="passwordRe" type="password" size="20" maxlength="20"/></td>\
47 <td><button>valider</button>\
53 PageRegister
.prototype.charger = function()
55 $("#page form#register").submit(function(){return false})
59 $("#page form#register button").click(
62 if ($("#page form#register input.captcha").val() != "") return
64 var login
= $("#page form#register input.login").val().trim()
65 var password
= $("#page form#register input.password").val()
66 var passwordRe
= $("#page form#register input.passwordRe").val()
69 thisPage
.util
.messageDialogue("Le login ne doit pas être vide")
70 else if (password
== "" && passwordRe
== "")
71 thisPage
.util
.messageDialogue("Un mot de passe est obligatoire")
72 else if (password
!= passwordRe
)
73 thisPage
.util
.messageDialogue("Les mots de passes ne correspondent pas")
74 else if(thisPage
.client
.enregistrement(login
, thisPage
.util
.md5(password
)))
76 // TODO : avertir que l'enregistrement s'est bien déroulé
77 thisPage
.util
.messageDialogue("Enregistrement réussi")
78 thisPage
.pages
.afficherPage("minichat")