Anne31415 commited on
Commit
cf95c50
·
verified ·
1 Parent(s): 585efae

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -7
app.py CHANGED
@@ -643,17 +643,13 @@ def main():
643
  with st.sidebar:
644
  st.title('BinDoc GmbH')
645
 
646
- # Display Session ID
647
- st.text(f"Your Session ID: {session_id}")
648
-
649
- # Place the copy button in the sidebar
650
- st.markdown(copy_button, unsafe_allow_html=True)
651
- st.text("Click the button to copy your Session ID to the clipboard.")
652
-
653
  # Navigation
654
  page = st.selectbox("Choose a page", ["KH_Reform", "Kennzahlenbuch 100 Kennzahlen", "Kosten- und Strukturdaten der Krankenhäuser", "Form"])
655
  st.text('Made with ❤️ by BinDoc GmbH')
656
 
 
 
 
657
  # Main area content based on page selection
658
  if page == "KH_Reform":
659
  page1()
 
643
  with st.sidebar:
644
  st.title('BinDoc GmbH')
645
 
 
 
 
 
 
 
 
646
  # Navigation
647
  page = st.selectbox("Choose a page", ["KH_Reform", "Kennzahlenbuch 100 Kennzahlen", "Kosten- und Strukturdaten der Krankenhäuser", "Form"])
648
  st.text('Made with ❤️ by BinDoc GmbH')
649
 
650
+ # Display Session ID
651
+ st.text(f"Your Session ID: {session_id}")
652
+
653
  # Main area content based on page selection
654
  if page == "KH_Reform":
655
  page1()