Spaces:
Runtime error
Runtime error
File size: 300 Bytes
11a5c67 9a07a06 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import streamlit as st
st.title("Spatial Parser Demo")
password = st.text_input("Enter access password:", type="password")
if password != "demo1234":
st.warning("Please enter the correct password to continue.")
st.stop()
# 👇真实内容放在这下面
st.write("Welcome to the demo!")
|