I'm attempting to implement password resetting into my application using Meteor's built-in methods. I understand that the token from the link like this
needs to be retrieved, and passed into
Accounts.resetPassword();
But how do I get this token? I'm using Backbone's Router for routing purposes, which would ordinarily allow me to get the token by doing something like this:
routes : {
'reset-password/:id' : 'newPassword',
},
But it seems like Backbone expects the format to be
/#reset-password/token
instead.
Anyway -- can anyone help me with (probably the obvious) solution to retrieving this token?
Cheers.