{% from "components/text_input.html" import TextInput %} {% macro UserInfo(first_name, last_name, email, phone) -%}
{{ TextInput(first_name) }}
{{ TextInput(last_name) }}
{{ TextInput(email, placeholder='name@mail.mil', validation='email') }}
{{ TextInput(phone, placeholder='(123) 456-7890', validation='usPhone') }}
{% endmacro %}