Update POC fields

This commit is contained in:
Luis Cielak 2018-07-25 16:28:23 -04:00
parent ab0333d85d
commit 2e989eb8f7

View File

@ -1,14 +1,14 @@
{% extends '../requests_new.html.to' %} {% extends '../requests_new.html.to' %}
{% block subtitle %} {% block subtitle %}
<h2>Primary Government/Military <br> Point of Contact (POC)</h2> <h2>Primary Government/Military <br> Point of Contact (POC)</h2>
{% end %} {% end %}
{% block form %} {% block form %}
{% autoescape None %} {% autoescape None %}
{% if f.errors %} {% if f.errors %}
<b class="usa-input-error-message">There were some errors, see below.</b> <b class="usa-input-error-message">There were some errors, see below.</b>
{% end %} {% end %}
<p class="usa-font-lead">Please designate a Primary Point of Contact that will be responsible for owning the workspace in the JEDI Cloud.</p> <p class="usa-font-lead">Please designate a Primary Point of Contact that will be responsible for owning the workspace in the JEDI Cloud.</p>
@ -23,36 +23,9 @@
<em>This POC may be you.</em> <em>This POC may be you.</em>
</p> </p>
{{ f.fname_poc.label }} {% module TextInput(f.fname_poc) %}
{{ f.fname_poc(placeholder="First name") }} {% module TextInput(f.lname_poc) %}
{% for e in f.fname_poc.errors %} {% module TextInput(f.email_poc) %}
<div class="usa-input-error-message"> {% module TextInput(f.dodid_poc) %}
{{ e }}
</div>
{% end %}
{{ f.lname_poc.label }} {% end %}
{{ f.lname_poc(placeholder="Last name") }}
{% for e in f.lname_poc.errors %}
<div class="usa-input-error-message">
{{ e }}
</div>
{% end %}
{{ f.email_poc.label }}
{{ f.email_poc(placeholder="jane@mail.mil") }}
{% for e in f.email_poc.errors %}
<div class="usa-input-error-message">
{{ e }}
</div>
{% end %}
{{ f.dodid_poc.label }}
{{ f.dodid_poc(placeholder="10-digit number on the back of the CAC") }}
{% for e in f.dodid_poc.errors %}
<div class="usa-input-error-message">
{{ e }}
</div>
{% end %}
{% end %}