Spaces:
Running
Running
Size hints in inputbox.
Browse files
main.py
CHANGED
@@ -577,7 +577,7 @@ def tl_html_results_and_feedback_area(session, show_submit_form=True):
|
|
577 |
|
578 |
|
579 |
def tl_html_render_inputbox(session, target_html_id, region_html_id):
|
580 |
-
txtarea = Textarea(id="ccodetoeval", name="ccodetoeval", placeholder="Paste a
|
581 |
form = Form(Group(txtarea, Button("Evaluate")),
|
582 |
hx_post="/submit_to_eval",
|
583 |
hx_swap="outerHTML",
|
|
|
577 |
|
578 |
|
579 |
def tl_html_render_inputbox(session, target_html_id, region_html_id):
|
580 |
+
txtarea = Textarea(id="ccodetoeval", name="ccodetoeval", placeholder="Paste a standalone C program here. Larger than a 'Hello world', smaller than 1000 LoC.", rows=3)
|
581 |
form = Form(Group(txtarea, Button("Evaluate")),
|
582 |
hx_post="/submit_to_eval",
|
583 |
hx_swap="outerHTML",
|