diff --git a/atst/forms/poc.py b/atst/forms/poc.py index c595097b..3dcdc223 100644 --- a/atst/forms/poc.py +++ b/atst/forms/poc.py @@ -6,11 +6,11 @@ from .validators import IsNumber class POCForm(ValidatedForm): - fname_poc = StringField("POC First Name", validators=[Required()]) + fname_poc = StringField("First Name", validators=[Required()]) - lname_poc = StringField("POC Last Name", validators=[Required()]) + lname_poc = StringField("Last Name", validators=[Required()]) - email_poc = EmailField("POC Email Address", validators=[Required(), Email()]) + email_poc = EmailField("Email Address", validators=[Required(), Email()]) dodid_poc = StringField( "DOD ID", validators=[Required(), Length(min=10), IsNumber()] diff --git a/atst/routes/requests/jedi_request_flow.py b/atst/routes/requests/jedi_request_flow.py index 6623a909..199be16f 100644 --- a/atst/routes/requests/jedi_request_flow.py +++ b/atst/routes/requests/jedi_request_flow.py @@ -120,7 +120,7 @@ class JEDIRequestFlow(object): "show": True, }, { - "title": "Primary Point of Contact", + "title": "Workspace Owner", "section": "primary_poc", "form": POCForm, "show": True, diff --git a/templates/requests/screen-3.html b/templates/requests/screen-3.html index 8971215c..2f03c8bf 100644 --- a/templates/requests/screen-3.html +++ b/templates/requests/screen-3.html @@ -4,7 +4,7 @@ {% from "components/text_input.html" import TextInput %} {% block subtitle %} -

Primary Government/Military
Point of Contact (POC)

+

Designate a Workspace Owner

{% endblock %} {% block form %} @@ -16,18 +16,17 @@ ) }} {% endif %} -

Please designate a Primary Point of Contact that will be responsible for owning the workspace in the JEDI Cloud.

-

The Point of Contact will become the primary owner of the workspace created to use the JEDI Cloud. As a workspace owner, this person will have the ability to: +

The Workspace Owner is the primary point of contact and technical administrator of the JEDI Workspace and will have the following responsibilities:

- This POC may be you.

+

This person must be a DoD employee (not a contractor).

+

The Workspace Owner may be you. You will be able to add other administrators later. This person will be invited via email once your request is approved.

+ {{ TextInput(f.fname_poc,placeholder='First Name') }} {{ TextInput(f.lname_poc,placeholder='Last Name') }} {{ TextInput(f.email_poc,placeholder='jane@mail.mil', validation='email') }}