Closed
Description
Is your feature request related to a problem? Please describe.
I often find that due to the time it takes mail to deliver in my country / with our providers, clients will reclick the "forgot password / resend email". Then, the first email comes through with an "Invalid Link" (as the second request wiped it), leading to increasing frustration with our customers.
Describe the solution you'd like
Cooldowns:
If the request is re-requested within a specified timeframe (e.g 1 min), either:
- The server responds with an error message such a "please wait blah blah blah"
- The server resend the email without re-creating another code.
Or, allowing multiple verification codes in an array (e.g, 5), and only one has to be clicked to verify the request.
Describe alternatives you've considered
Using a custom cloud function to check code expiry and date, and then work backwards.