15 lines
266 B
Python
15 lines
266 B
Python
import streamlit as st
|
|
|
|
st.text_input(label="姓名")
|
|
|
|
st.text_input(label="年龄")
|
|
|
|
st.text_input(label="密码", type="password")
|
|
|
|
st.text_input(label="数字")
|
|
|
|
st.number_input(label="日期")
|
|
|
|
st.date_input(label="时间")
|
|
|
|
st.text_input("时间") |