File size: 569 Bytes
f18ed57
 
2e0b4a6
3e30a68
f18ed57
 
 
 
2e0b4a6
3e30a68
2e0b4a6
 
f18ed57
 
2e0b4a6
 
 
f18ed57
2e0b4a6
 
f18ed57
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import streamlit as st

from config import DEFAULT_ICON, LEAGUE_NAME
from login_component import get_authorization_button


def get_app():
    keeper_title = f"{LEAGUE_NAME}"
    st.set_page_config(page_title=keeper_title, page_icon=DEFAULT_ICON)
    get_authorization_button()
    st.markdown(
        f"""
    Welcome {LEAGUE_NAME}!
    
    Navigate between pages using the left sidebar.  
    
    If the sidebar is not visible, click the **>** in the upper left corner to open.
                
                """
    )


if __name__ == "__main__":
    get_app()