Merge branch 'xorg/master' into xorg/f/xnet-accounts
[platal.git] / htdocs / javascript / password.js
1 /***************************************************************************
2 * Copyright (C) 2003-2011 Polytechnique.org *
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
21 function hashResponse(password1, password2, hasConfirmation) {
22 pw1 = $('[name=' + password1 + ']').val();
23
24 if (pw1 == '********') {
25 return true;
26 }
27 if (hasConfirmation) {
28 pw2 = $('[name=' + password2 + ']').val();
29 if (pw1 != pw2) {
30 alert("\nErreur : les deux champs ne sont pas identiques !");
31 return false;
32 }
33 $('[name=' + password2 + ']').val('');
34 }
35
36 if (pw1.length < 6) {
37 alert("\nErreur : le nouveau mot de passe doit faire au moins 6 caractères !");
38 return false;
39 }
40 if (!differentTypes(pw1)) {
41 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.");
42 return false;
43 }
44
45 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.");
46 $('[name=' + password1 + ']').val('');
47 $('[name=pwhash]').val(hash_encrypt(pw1));
48 return true;
49 }
50
51 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: