Update app.py
Browse files
app.py
CHANGED
@@ -39,7 +39,11 @@ port = 587 # For starttls
|
|
39 |
smtp_server = "smtp.gmail.com"
|
40 |
sender_email = "[email protected]"
|
41 |
receiver_email = "[email protected]"
|
42 |
-
|
|
|
|
|
|
|
|
|
43 |
message = """\
|
44 |
Subject: Hi there
|
45 |
|
|
|
39 |
smtp_server = "smtp.gmail.com"
|
40 |
sender_email = "[email protected]"
|
41 |
receiver_email = "[email protected]"
|
42 |
+
|
43 |
+
# password = input("Type your password and press enter:") # ORIGINAL
|
44 |
+
# st.text_input
|
45 |
+
password = st.text_input("Type your password and press enter:") # JB
|
46 |
+
|
47 |
message = """\
|
48 |
Subject: Hi there
|
49 |
|