Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -118,12 +118,12 @@ with gr.Blocks(css=ui_css) as demo:
|
|
118 |
gr.Image(value="https://universitysurgical.com/wp-content/uploads/2021/12/hipaa-e1638383751916.png", elem_id="hipaa-image")
|
119 |
gr.Markdown("Place basic instructions here")
|
120 |
|
121 |
-
with gr.
|
122 |
-
inputs=gr.Textbox(label="Enter Text", elem_id="input-box", lines=5)
|
123 |
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
|
128 |
with gr.Row():
|
129 |
submit_button = gr.Button("Submit", elem_id="submit-button")
|
|
|
118 |
gr.Image(value="https://universitysurgical.com/wp-content/uploads/2021/12/hipaa-e1638383751916.png", elem_id="hipaa-image")
|
119 |
gr.Markdown("Place basic instructions here")
|
120 |
|
121 |
+
with gr.Row(elem_id="interactives"):
|
122 |
+
inputs=gr.Textbox(label="Enter Input Text Here", elem_id="input-box", lines=5)
|
123 |
|
124 |
+
with gr.Row(elem_id="output-elems"):
|
125 |
+
gr.Markdown("This text is a violation: ")
|
126 |
+
outputs=gr.Textbox(elem_id="output-box", interactive=False)
|
127 |
|
128 |
with gr.Row():
|
129 |
submit_button = gr.Button("Submit", elem_id="submit-button")
|