* Updates the state of the Sign-in form.
()
| 41 | * Updates the state of the Sign-in form. |
| 42 | */ |
| 43 | function updateSignInButtonUI() { |
| 44 | if (auth.currentUser) { |
| 45 | signInButton.style.display = 'none'; |
| 46 | } else { |
| 47 | signInButton.style.display = 'block'; |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | /** |
| 52 | * Updates the state of the Sign out button. |