{% extends 'portfolios/base.html' %} {% from "components/text_input.html" import TextInput %} {% from "components/multi_checkbox_input.html" import MultiCheckboxInput %} {% from 'components/save_button.html' import SaveButton %} {% block content %} {% include "fragments/flash.html" %} {{ "task_orders.so_review.title" | translate }} {{ form.csrf_token }} {{ "task_orders.so_review.certification" | translate }} {{ TextInput(form.certifying_official) }} {{ TextInput(form.certifying_official_title) }} {{ TextInput(form.certifying_official_phone, placeholder='(123) 456-7890', validation='usPhone') }} {{ TextInput(form.certifying_official_address, paragraph=True) }} {{ MultiCheckboxInput(form.required_distribution) }} {{ SaveButton(text='Continue') }} {% endblock %}