3zoozzn commited on
Commit
478e938
1 Parent(s): 002e760

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -24,8 +24,8 @@ def email_sender(sender_add, password, to_emails, num_emails):
24
 
25
  def main():
26
  st.title("Email Sender App")
27
- sender_email = st.text_input("Your Email", type='email')
28
- sender_password = st.text_input("Your Email Password", type="password")
29
  recipient_emails = st.text_input("Recipient Emails (comma separated without space)")
30
  num_emails = st.slider("Number of Emails", min_value=1, max_value=10)
31
 
 
24
 
25
  def main():
26
  st.title("Email Sender App")
27
+ sender_email = st.text_input("Your Email")
28
+ sender_password = st.text_input("Your Email Password")
29
  recipient_emails = st.text_input("Recipient Emails (comma separated without space)")
30
  num_emails = st.slider("Number of Emails", min_value=1, max_value=10)
31