Skip to content

Commit

Permalink
Retrait d'un console log et correction d'une typo
Browse files Browse the repository at this point in the history
  • Loading branch information
MyVirtualStoryBook committed Jan 8, 2016
1 parent d557a24 commit 09caf38
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions routes/portal.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ router.post('/recover', function(req, res, next) {
var key = Math.floor(Math.random() * chars.length);
newpassword += chars[key];
}

console.log(player);
player.password = SHA512(newpassword);

player.save().then(function(){
Expand All @@ -45,7 +43,7 @@ router.post('/recover', function(req, res, next) {
"Subject":"Changement de mot de passe",
"Text-part":"",
"Html-part":"<div>Bonjour <b>"+player.username+"</b>,</div>"+
"<br/><div>vous recevez ce mail car vous avez demandé à réinitialisé votre mot de passe.</div>" +
"<br/><div>vous recevez ce mail car vous avez demandé à réinitialiser votre mot de passe.</div>" +
"<div>Si vous n'avez jamais demandé à le changer, merci de contacter l'administateur du site en répondant à ce mail.</div>" +
"<br/>"+
"<div>Votre mot de passe temporaire est : <b>"+newpassword+"</b>" +
Expand Down

0 comments on commit 09caf38

Please sign in to comment.