I have tried running the following code:
Create an empty container
placeholder = st.empty()
actual_email = “email”
actual_password = “password”
Insert a form in the container
with placeholder.form(“login”):
st.markdown(“#### Enter your credentials”)
email = st.text_input(“Email”)
password = st.text_input(“Password”, type=“password”)
submit = st.form_submit_button(“Login”)
if submit and email == actual_email and password == actual_password:
# If the form is submitted and the email and password are correct,
# clear the form/container and display a success message
placeholder.empty()
st.success(“Login successful”)
elif submit and email != actual_email and password != actual_password:
st.error(“Login failed”)
else:
pass
while trying above code I am getting error “‘setIn’ cannot be called on an ElementNode”
What to do in this case? I have referred this in community it says that it is fixed but still I am getting the error.