ml-visoft commited on
Commit
65de5c1
1 Parent(s): ef0adcb

Size hints in inputbox.

Browse files
Files changed (1) hide show
  1. main.py +1 -1
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 piece of C code here.", rows=3)
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",