Update app.py
Browse files
app.py
CHANGED
@@ -37,11 +37,11 @@ def validate_email(email):
|
|
37 |
|
38 |
def login():
|
39 |
st.write("Login")
|
40 |
-
username
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
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():
|