Spaces:
Runtime error
Runtime error
IsaacKerson
commited on
Commit
•
7aa0686
1
Parent(s):
5674bf3
correct text_input typo
Browse files- pages/join.py +1 -1
pages/join.py
CHANGED
@@ -12,7 +12,7 @@ with st.form("join_form"):
|
|
12 |
first_name = st.text_input("First Name")
|
13 |
last_name = st.text_input("Last Name")
|
14 |
user_name = st.text_input("User Name")
|
15 |
-
password1 = st.
|
16 |
password2 = st.text_input("Confirm Password", type="password")
|
17 |
|
18 |
submitted = st.form_submit_button("Submit")
|
|
|
12 |
first_name = st.text_input("First Name")
|
13 |
last_name = st.text_input("Last Name")
|
14 |
user_name = st.text_input("User Name")
|
15 |
+
password1 = st.text_input("Password", type="password")
|
16 |
password2 = st.text_input("Confirm Password", type="password")
|
17 |
|
18 |
submitted = st.form_submit_button("Submit")
|