Skip to content

Commit

Permalink
fix Submit page error
Browse files Browse the repository at this point in the history
  • Loading branch information
as6325400 committed Oct 4, 2024
1 parent ef62bc0 commit c1a053f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions webapp/templates/team/submit.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
</div>
{% else %}

{{ form_start(form) }}
{{ form_row(form.code) }}
{{ form_row(form.problem) }}
{{ form_row(form.language) }}
{{ form_row(form.entry_point) }}
{{ form_start(formupload) }}
{{ form_row(formupload.code) }}
{{ form_row(formupload.problem) }}
{{ form_row(formupload.language) }}
{{ form_row(formupload.entry_point) }}
<div class="mb-3">
<button type="submit" class="btn-success btn"><i class="fas fa-cloud-upload-alt"></i> Submit
</button>
Expand Down

0 comments on commit c1a053f

Please sign in to comment.