Spaces:
Build error
Build error
update textbox
Browse files
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')
|