pere commited on
Commit
4b67a85
·
1 Parent(s): fb30d92

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -21,8 +21,12 @@ expander = st.sidebar.expander("About")
21
  expander.write("This web app allows you to translate a text in Norwegian Bokmål to Norwegian Nynorsk.")
22
 
23
  st.sidebar.header("Choose or write your own.")
24
- option = st.selectbox("", ["Text summarization", "Dette er et eksempel.", "Dette er en test."])
25
 
 
 
 
 
 
26
 
27
  text = st.text_input(f"Bokmål text: ")
28
 
 
21
  expander.write("This web app allows you to translate a text in Norwegian Bokmål to Norwegian Nynorsk.")
22
 
23
  st.sidebar.header("Choose or write your own.")
 
24
 
25
+ option = st.selectbox(
26
+ 'How would you like to be contacted?',
27
+ ('Email', 'Home phone', 'Mobile phone'))
28
+
29
+ st.write('You selected:', option)
30
 
31
  text = st.text_input(f"Bokmål text: ")
32