thinh-vu commited on
Commit
4f25cd3
1 Parent(s): 1bb644d

Update init.py

Browse files
Files changed (1) hide show
  1. init.py +5 -2
init.py CHANGED
@@ -36,8 +36,11 @@ try:
36
  from app import technical_tab
37
  from authen import authorize
38
 
39
- auth, conf = authorize.load_config()
40
- auth.login()
 
 
 
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'])