Returns the html body for the email with the reset code applied.
The ID that validates the password reset.
Handles password reset requests
If the email in the 'GET' body is correct, an email with a reset link will be
sent. If not returns an error. Route: /reset
Request body should be of form { email: string }
Route that will reset the password when the code and password are valid.
Use route /reset/:id
with a 'POST' request with body of form
{ password: string }
Generated using TypeDoc
Route used to check if a reset code is valid. Use route
/reset/:id
with a 'GET' request.