46 lines
1.2 KiB
HTML
46 lines
1.2 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% from "components/text_input.html" import TextInput %}
|
|
{% from "components/options_input.html" import OptionsInput %}
|
|
{% from "components/date_input.html" import DateInput %}
|
|
|
|
{% block content %}
|
|
|
|
{% include "fragments/flash.html" %}
|
|
|
|
<form method="POST" action="{{ url_for('task_orders.update', task_order_id=task_order.id) }}" autocomplete="false">
|
|
{{ form.csrf_token }}
|
|
|
|
<div class="panel">
|
|
|
|
<div class="panel__heading">
|
|
<h1>Task Order</h1>
|
|
</div>
|
|
|
|
<div class="panel__content">
|
|
<p>DoD Contract Security Classification Specification</p>
|
|
|
|
<!-- Download & Next Steps Section -->
|
|
|
|
<div class='action-group'>
|
|
<button type="submit" class="usa-button usa-button-big usa-button-primary" tabindex="0">Submit for Approval</button>
|
|
</div>
|
|
|
|
<p>Download your Task Order Packet.</p>
|
|
|
|
<!-- Security Officer Approval -->
|
|
|
|
<!-- KO Approval -->
|
|
{{ TextInput(form.number) }}
|
|
{{ TextInput(form.number_confirm) }}
|
|
{{ TextInput(form.loa) }}
|
|
<p>Add another LOA</p>
|
|
|
|
<p>I certify that the task order information above is accurate and that funding has been allocated to the above task order.</p>
|
|
</div>
|
|
</div>
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|