Spaces:
Running
Running
Update init.py
Browse files
init.py
CHANGED
@@ -36,8 +36,11 @@ try:
|
|
36 |
from app import technical_tab
|
37 |
from authen import authorize
|
38 |
|
39 |
-
|
40 |
-
|
|
|
|
|
|
|
41 |
|
42 |
if st.session_state["authentication_status"]:
|
43 |
chart_tab, account_tab = st.tabs(['Home', 'Account'])
|
|
|
36 |
from app import technical_tab
|
37 |
from authen import authorize
|
38 |
|
39 |
+
center_col = st.columns([1, 3, 1])[1]
|
40 |
+
|
41 |
+
with center_col:
|
42 |
+
auth, conf = authorize.load_config()
|
43 |
+
auth.login()
|
44 |
|
45 |
if st.session_state["authentication_status"]:
|
46 |
chart_tab, account_tab = st.tabs(['Home', 'Account'])
|