sbgonenc96 commited on
Commit
92fe50b
·
verified ·
1 Parent(s): 2dcc3b2

update textbox

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -30,11 +30,11 @@ with gr.Blocks() as demo:
30
  user_mail = gr.Text(label='Gönderen Mail adresi', value=None)
31
  google_api_key = gr.Text(label="Google mail API anahtarı", value=None)
32
 
33
- with gr.Row():
34
- content = gr.Text(label='Gönderilecek mail metni', value="")
35
-
36
  with gr.Row():
37
  subject_text = gr.Text(label='Mail konusu', value="")
 
 
 
38
 
39
  with gr.Row():
40
  create_button = gr.Button('Gönder')
 
30
  user_mail = gr.Text(label='Gönderen Mail adresi', value=None)
31
  google_api_key = gr.Text(label="Google mail API anahtarı", value=None)
32
 
 
 
 
33
  with gr.Row():
34
  subject_text = gr.Text(label='Mail konusu', value="")
35
+
36
+ with gr.Row():
37
+ content = gr.Textbox(label='Gönderilecek mail metni', value="", lines=3)
38
 
39
  with gr.Row():
40
  create_button = gr.Button('Gönder')