{% set title = problem.title %} {% set subtitle = '提交' %} {% set tab_links = { '题目': '/problem/' + problem.id, '提交!': '/problem/' + problem.id + '/submit', '提交记录': '/problem/' + problem.id + '/submission', } %} {% extends "layout.html" %} {% block container %}
{{ form.csrf_token }}
{{ form.code.label(class='mdui-textfield-label') }} {{ form.code(class='mdui-textfield-input',style='min-height: 16em; font-family: monospace')}}
{{ form.submit(class='mdui-btn mdui-btn-raised mdui-color-theme-accent') }}
{% endblock %}