CosmoAI commited on
Commit
1760e7b
·
1 Parent(s): adbd0fb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -37,11 +37,11 @@ def validate_email(email):
37
 
38
  def login():
39
  st.write("Login")
40
- username = st.text_input("Email")
41
- if validate_email(username):
42
- st.success("The email address is valid.")
43
- else:
44
- st.error("The email address is not valid.")
45
  password = st.text_input("Password", type="password")
46
  if st.button("Login"):
47
  if username in col.find():
 
37
 
38
  def login():
39
  st.write("Login")
40
+ if username := st.text_input("Email")
41
+ if validate_email(username):
42
+ st.success("The email address is valid.")
43
+ else:
44
+ st.error("The email address is not valid.")
45
  password = st.text_input("Password", type="password")
46
  if st.button("Login"):
47
  if username in col.find():