mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
21 lines
358 B
JavaScript
21 lines
358 B
JavaScript
![]() |
(function(){
|
||
|
|
||
|
Template.user_password.events = {
|
||
|
'click input[type=submit]': function(e){
|
||
|
e.preventDefault();
|
||
|
|
||
|
var options=new Object();
|
||
|
options.email=$('#email').val();
|
||
|
Meteor.forgotPassword(options, function(error){
|
||
|
if(error){
|
||
|
alert(error);
|
||
|
}else{
|
||
|
alert("Password reset link sent!");
|
||
|
}
|
||
|
});
|
||
|
|
||
|
}
|
||
|
|
||
|
};
|
||
|
|
||
|
})();
|