21 lines
788 B
HTML
21 lines
788 B
HTML
{% extends "task_orders/builder_base.html" %}
|
|
|
|
{% from "components/alert.html" import Alert %}
|
|
{% from "components/checkbox_input.html" import CheckboxInput %}
|
|
{% from 'task_orders/form_header.html' import TOFormStepHeader %}
|
|
|
|
{% set action = url_for("task_orders.submit_task_order", task_order_id=task_order_id) %}
|
|
{% set next_button_text = "Next: Confirm & Submit" %}
|
|
{% set previous_button_link = url_for("task_orders.form_step_four_review", task_order_id=task_order_id) %}
|
|
{% set step = "5" %}
|
|
|
|
{% block to_builder_form_field %}
|
|
{{ TOFormStepHeader("Signature confirmation", "Lorem ipsem", task_order_number) }}
|
|
|
|
{% call Alert('',
|
|
message="All task orders require a Contracting Officer signature."
|
|
) %}
|
|
{{ CheckboxInput(form.signature) }}
|
|
{% endcall %}
|
|
{% endblock %}
|