Update app.py
Browse files
app.py
CHANGED
|
@@ -414,6 +414,10 @@ def authenticate_user_ui():
|
|
| 414 |
st.title("Insta's EYE")
|
| 415 |
st.sidebar.title("Options")
|
| 416 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 417 |
if st.session_state.auth_state["signed_in"]:
|
| 418 |
st.sidebar.button("Sign Out", on_click=logout)
|
| 419 |
st.title("Welcome!")
|
|
|
|
| 414 |
st.title("Insta's EYE")
|
| 415 |
st.sidebar.title("Options")
|
| 416 |
|
| 417 |
+
# Add the meta tag to hide the status bar
|
| 418 |
+
meta_tag = """<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">"""
|
| 419 |
+
st.markdown(meta_tag, unsafe_allow_html=True)
|
| 420 |
+
|
| 421 |
if st.session_state.auth_state["signed_in"]:
|
| 422 |
st.sidebar.button("Sign Out", on_click=logout)
|
| 423 |
st.title("Welcome!")
|