This commit is contained in:
Jacob Levine
2019-02-06 16:14:39 -06:00
parent 19a236251a
commit 781b4dc8b5
3 changed files with 6 additions and 3 deletions

View File

@@ -55,6 +55,7 @@ var handleSignedInUser = function(user) {
document.getElementById('updpi').style.display = 'inline-block';
document.getElementById('deleteacc').style.display = 'inline-block';
document.getElementById('profileupd').style.display = 'none';
document.getElementById('sideload').style.display = 'block';
}
var handleSignedOutUser = function() {
document.getElementById("mainhead").innerHTML = "TitanScout- Sign In";
@@ -63,6 +64,7 @@ var handleSignedOutUser = function() {
document.getElementById('updpi').style.display = 'none';
document.getElementById('deleteacc').style.display = 'none';
document.getElementById('profileupd').style.display = 'none';
document.getElementById('sideload').style.display = 'none';
ui.start('#firebaseui-auth-container', uiConfig);
};