* Updates the state of the Sign-in form.
()
| 216 | * Updates the state of the Sign-in form. |
| 217 | */ |
| 218 | function updateSignInFormUI() { |
| 219 | if (auth.currentUser || window.confirmationResult) { |
| 220 | signInForm.style.display = 'none'; |
| 221 | } else { |
| 222 | resetReCaptcha(); |
| 223 | signInForm.style.display = 'block'; |
| 224 | } |
| 225 | } |
| 226 | |
| 227 | /** |
| 228 | * Updates the state of the Verify code form. |
no test coverage detected