Prakash N commited on
Commit
fb4a63f
1 Parent(s): 4cbf692

added text area,and submit button

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -22,15 +22,15 @@ st.markdown(""" #### LorSor helps you through a simple 3 stage process.
22
 
23
  Kick back and think about what you're going to do with all the time that you've saved!
24
 
25
- Send any feedback to [us]([email protected]) """)
26
 
27
 
28
  col1, col2 = st.columns(2)
29
 
30
  with col1:
31
- col1.header("This is col1")
32
- x = st.slider('Select a value')
33
- st.write(x, ' squared is', x * x)
34
 
35
  col2.write("This is col2")
36
 
 
22
 
23
  Kick back and think about what you're going to do with all the time that you've saved!
24
 
25
+ Send any feedback to [us](mailto:[email protected]) """)
26
 
27
 
28
  col1, col2 = st.columns(2)
29
 
30
  with col1:
31
+ col1.header("Copy and paste your article here")
32
+ x = st.text_area('Paste here...')
33
+ st.button("Summarize this")
34
 
35
  col2.write("This is col2")
36