JBHF commited on
Commit
baca08b
·
verified ·
1 Parent(s): 8bedb56

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
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
- password = input("Type your password and press enter:")
 
 
 
 
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