File size: 520 Bytes
a993e3f
 
 
fdc7b5a
a993e3f
 
fdc7b5a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

import streamlit as st


st.header('kadhalTensor', divider='red')
st.header('_Adhalal Kadhal Seiveer_ is :blue[cool] :sunglasses:')
st.write("Kadhal Engine on Sangam Literature : by Prabakaran Chandran")


with st.form("my_form"):
   st.write("What do want to know about sangam era's love?")
   
   question_input = st.text_input("")
   

   # Every form must have a submit button.
   submitted = st.form_submit_button("Submit")
   if submitted:
       st.write("slider", question_input,)

st.write("Outside the form")