* Sends a password reset email to the user.
()
| 170 | * Sends a password reset email to the user. |
| 171 | */ |
| 172 | function sendPasswordReset() { |
| 173 | const email = emailInput.value; |
| 174 | sendPasswordResetEmail(auth, email) |
| 175 | .then(function () { |
| 176 | alertMessage('Password Reset Email Sent!'); |
| 177 | }) |
| 178 | .catch(displayError); |
| 179 | } |
| 180 | |
| 181 | /** |
| 182 | * Updates the multi-factor dialog UI for enrollment/sign-in flows. |
nothing calls this directly
no test coverage detected