* Updates the state of the Sign-in form.
()
| 200 | * Updates the state of the Sign-in form. |
| 201 | */ |
| 202 | function updateSignInFormUI() { |
| 203 | if (auth.currentUser || window.confirmationResult) { |
| 204 | signInForm.style.display = 'none'; |
| 205 | } else { |
| 206 | resetReCaptcha(); |
| 207 | signInForm.style.display = 'block'; |
| 208 | } |
| 209 | } |
| 210 | |
| 211 | /** |
| 212 | * Updates the state of the Verify code form. |
no test coverage detected