prabakaranchandran commited on
Commit
fdc7b5a
·
1 Parent(s): a993e3f

Second change

Browse files
Files changed (1) hide show
  1. app.py +16 -2
app.py CHANGED
@@ -1,7 +1,21 @@
1
 
2
  import streamlit as st
3
 
 
4
  st.header('kadhalTensor', divider='red')
5
  st.header('_Adhalal Kadhal Seiveer_ is :blue[cool] :sunglasses:')
6
- st.write("Kadhal Engine on Sangam Literature")
7
- st.write("sk")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
 
2
  import streamlit as st
3
 
4
+
5
  st.header('kadhalTensor', divider='red')
6
  st.header('_Adhalal Kadhal Seiveer_ is :blue[cool] :sunglasses:')
7
+ st.write("Kadhal Engine on Sangam Literature : by Prabakaran Chandran")
8
+
9
+
10
+ with st.form("my_form"):
11
+ st.write("What do want to know about sangam era's love?")
12
+
13
+ question_input = st.text_input("")
14
+
15
+
16
+ # Every form must have a submit button.
17
+ submitted = st.form_submit_button("Submit")
18
+ if submitted:
19
+ st.write("slider", question_input,)
20
+
21
+ st.write("Outside the form")