Spaces:
Build error
Build error
File size: 398 Bytes
a113af0 652331b 461285c 652331b 461285c 652331b 4caa8dd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | import streamlit as st
# Title of the app
st.title("Hello App")
# Text input from user
name = st.text_input("Enter your name")
# Button to submit the input
if st.button("Submit"):
if name:
st.success(f"Hello, {name}!")
else:
st.warning("Please enter your name.")
# Clear button
if st.button("Clear"):
st.rerun() # Updated from st.experimental_rerun() to st.rerun()
|