Happy New Year!
[platal.git] / htdocs / javascript / password.js
CommitLineData
0337d704 1/***************************************************************************
5e1513f6 2 * Copyright (C) 2003-2011 Polytechnique.org *
0337d704 3 * http://opensource.polytechnique.org/ *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the Free Software *
17 * Foundation, Inc., *
18 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
19 ***************************************************************************/
20
81b5a6c9
SJ
21function hashResponse(password1, password2, hasConfirmation) {
22 pw1 = $('[name=' + password1 + ']').val();
2477a631 23
81b5a6c9
SJ
24 if (hasConfirmation) {
25 pw2 = $('[name=' + password2 + ']').val();
26 if (pw1 != pw2) {
27 alert("\nErreur : les deux champs ne sont pas identiques !");
0337d704 28 return false;
81b5a6c9
SJ
29 }
30 $('[name=' + password2 + ']').val('');
2477a631
SJ
31 } else if (pw1 == '********') {
32 return true;
0337d704 33 }
2477a631 34
0337d704 35 if (pw1.length < 6) {
81b5a6c9
SJ
36 alert("\nErreur : le nouveau mot de passe doit faire au moins 6 caractères !");
37 return false;
0337d704 38 }
81b5a6c9
SJ
39 if (!differentTypes(pw1)) {
40 alert ("\nErreur : le nouveau mot de passe doit comporter au moins deux types de caractères parmi les suivants : lettres minuscules, lettres majuscules, chiffres, caractères spéciaux.");
41 return false;
4baa7323 42 }
9deb52b6 43
81b5a6c9
SJ
44 alert("Le mot de passe que tu as rentré va être chiffré avant de nous parvenir par Internet ! Ainsi il ne circulera pas en clair.");
45 $('[name=' + password1 + ']').val('');
46 $('[name=pwhash]').val(hash_encrypt(pw1));
0337d704 47 return true;
48}
97a82cd2 49
a14159bf 50// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: