diff --git a/styles/sections/_application_edit.scss b/styles/sections/_application_edit.scss index e53ed262..9ee0e671 100644 --- a/styles/sections/_application_edit.scss +++ b/styles/sections/_application_edit.scss @@ -27,6 +27,10 @@ .form-content--app-mem { text-align: left; + .modal__body { + min-width: 75rem; + } + input[type="checkbox"] + label::before { margin-left: 0; } diff --git a/templates/applications/fragments/member_form_fields.html b/templates/applications/fragments/member_form_fields.html index 759c8428..c4d7d8c8 100644 --- a/templates/applications/fragments/member_form_fields.html +++ b/templates/applications/fragments/member_form_fields.html @@ -53,12 +53,11 @@ {% macro InfoFields(member_form) %}
- {{ TextInput(member_form.first_name, validation='requiredField', optional=False) }} - {{ TextInput(member_form.last_name, validation='requiredField', optional=False) }} - {{ TextInput(member_form.email, validation='email', optional=False) }} - {{ PhoneInput(member_form.phone_number, member_form.phone_ext)}} - {{ TextInput(member_form.dod_id, validation='dodId', optional=False) }} - How do I find the DoD ID? {% endmacro %} diff --git a/templates/components/phone_input.html b/templates/components/phone_input.html index 0aae1401..74200436 100644 --- a/templates/components/phone_input.html +++ b/templates/components/phone_input.html @@ -1,7 +1,7 @@ {% from "components/text_input.html" import TextInput %} {% macro PhoneInput(phone_number, phone_ext, placeholder_phone="", phone_optional=True, extension_optional=True) %} -