diff --git a/src/.pa11yci b/src/.pa11yci
index b94ed72fd..72d14bd93 100644
--- a/src/.pa11yci
+++ b/src/.pa11yci
@@ -4,6 +4,20 @@
"http://app:8080/health/",
"http://app:8080/whoami/",
"http://app:8080/register/",
+ "http://app:8080/register/organization/",
+ "http://app:8080/register/org_federal/",
+ "http://app:8080/register/org_election/",
+ "http://app:8080/register/org_contact/",
+ "http://app:8080/register/authorizing_official/",
+ "http://app:8080/register/current_sites/",
+ "http://app:8080/register/dotgov_domain/",
+ "http://app:8080/register/purpose/",
+ "http://app:8080/register/your_contact/",
+ "http://app:8080/register/other_contacts/",
+ "http://app:8080/register/security_email/",
+ "http://app:8080/register/anything_else/",
+ "http://app:8080/register/requirements/",
+ "http://app:8080/register/review/",
"http://app:8080/register/finished/"
]
}
diff --git a/src/registrar/forms/application_wizard.py b/src/registrar/forms/application_wizard.py
index 0944f7b2c..c184770ca 100644
--- a/src/registrar/forms/application_wizard.py
+++ b/src/registrar/forms/application_wizard.py
@@ -15,7 +15,14 @@ from registrar.models import DomainApplication, Website
logger = logging.getLogger(__name__)
-class OrganizationForm(forms.Form):
+# Subclass used to remove the default colon suffix from all fields
+class RegistrarForm(forms.Form):
+ def __init__(self, *args, **kwargs):
+ kwargs.setdefault("label_suffix", "")
+ super(RegistrarForm, self).__init__(*args, **kwargs)
+
+
+class OrganizationTypeForm(RegistrarForm):
organization_type = forms.ChoiceField(
required=True,
choices=[
@@ -47,11 +54,7 @@ class OrganizationForm(forms.Form):
)
federal_type = forms.ChoiceField(
required=False,
- choices=[
- ("Executive", "Executive"),
- ("Judicial", "Judicial"),
- ("Legislative", "Legislative"),
- ],
+ choices=DomainApplication.BRANCH_CHOICES,
widget=forms.RadioSelect,
)
is_election_board = forms.ChoiceField(
@@ -60,34 +63,237 @@ class OrganizationForm(forms.Form):
("Yes", "Yes"),
("No", "No"),
],
+ widget=forms.RadioSelect(attrs={"class": "usa-radio__input"}),
+ )
+
+
+class OrganizationFederalForm(RegistrarForm):
+ federal_type = forms.ChoiceField(
+ required=False,
+ choices=DomainApplication.BRANCH_CHOICES,
widget=forms.RadioSelect,
)
-class ContactForm(forms.Form):
+class OrganizationElectionForm(RegistrarForm):
+ is_election_board = forms.BooleanField(
+ widget=forms.RadioSelect(
+ choices=[
+ (True, "Yes"),
+ (False, "No"),
+ ],
+ )
+ )
+
+
+class OrganizationContactForm(RegistrarForm):
organization_name = forms.CharField(label="Organization Name")
- street_address = forms.CharField(label="Street address")
+ address_line1 = forms.CharField(label="Address line 1")
+ address_line2 = forms.CharField(
+ required=False,
+ label="Address line 2",
+ )
+ us_state = forms.ChoiceField(
+ label="State",
+ choices=[
+ ("AL", "Alabama"),
+ ("AK", "Alaska"),
+ ("AZ", "Arizona"),
+ ("AR", "Arkansas"),
+ ("CA", "California"),
+ ("CO", "Colorado"),
+ ("CT", "Connecticut"),
+ ("DE", "Delaware"),
+ ("DC", "District of Columbia"),
+ ("FL", "Florida"),
+ ("GA", "Georgia"),
+ ("HI", "Hawaii"),
+ ("ID", "Idaho"),
+ ("IL", "Illinois"),
+ ("IN", "Indiana"),
+ ("IA", "Iowa"),
+ ("KS", "Kansas"),
+ ("KY", "Kentucky"),
+ ("LA", "Louisiana"),
+ ("ME", "Maine"),
+ ("MD", "Maryland"),
+ ("MA", "Massachusetts"),
+ ("MI", "Michigan"),
+ ("MN", "Minnesota"),
+ ("MS", "Mississippi"),
+ ("MO", "Missouri"),
+ ("MT", "Montana"),
+ ("NE", "Nebraska"),
+ ("NV", "Nevada"),
+ ("NH", "New Hampshire"),
+ ("NJ", "New Jersey"),
+ ("NM", "New Mexico"),
+ ("NY", "New York"),
+ ("NC", "North Carolina"),
+ ("ND", "North Dakota"),
+ ("OH", "Ohio"),
+ ("OK", "Oklahoma"),
+ ("OR", "Oregon"),
+ ("PA", "Pennsylvania"),
+ ("RI", "Rhode Island"),
+ ("SC", "South Carolina"),
+ ("SD", "South Dakota"),
+ ("TN", "Tennessee"),
+ ("TX", "Texas"),
+ ("UT", "Utah"),
+ ("VT", "Vermont"),
+ ("VA", "Virginia"),
+ ("WA", "Washington"),
+ ("WV", "West Virginia"),
+ ("WI", "Wisconsin"),
+ ("WY", "Wyoming"),
+ ("AS", "American Samoa"),
+ ("GU", "Guam"),
+ ("MP", "Northern Mariana Islands"),
+ ("PR", "Puerto Rico"),
+ ("VI", "Virgin Islands"),
+ ],
+ )
+ zipcode = forms.CharField(label="ZIP code")
+
+
+class AuthorizingOfficialForm(RegistrarForm):
+ first_name = forms.CharField(label="First name/given name")
+ middle_name = forms.CharField(
+ required=False,
+ label="Middle name (optional)",
+ )
+ last_name = forms.CharField(label="Last name/family name")
+ title = forms.CharField(label="Title or role in your organization")
+ email = forms.EmailField(label="Email")
+ phone = forms.CharField(label="Phone")
+
+
+class CurrentSitesForm(RegistrarForm):
+ current_site = forms.CharField(
+ required=False,
+ label="Enter your organization’s public website, if you have one. For example, "
+ "www.city.com.",
+ )
+
+
+class DotGovDomainForm(RegistrarForm):
+ dotgov_domain = forms.CharField(label="What .gov domain do you want?")
+ alternative_domain = forms.CharField(
+ required=False,
+ label="Are there other domains you’d like if we can’t give you your first "
+ "choice? Entering alternative domains is optional.",
+ )
+
+
+class PurposeForm(RegistrarForm):
+ purpose_field = forms.CharField(label="Purpose", widget=forms.Textarea())
+
+
+class YourContactForm(RegistrarForm):
+ first_name = forms.CharField(label="First name/given name")
+ middle_name = forms.CharField(
+ required=False,
+ label="Middle name (optional)",
+ )
+ last_name = forms.CharField(label="Last name/family name")
+ title = forms.CharField(label="Title or role in your organization")
+ email = forms.EmailField(label="Email")
+ phone = forms.CharField(label="Phone")
+
+
+class OtherContactsForm(RegistrarForm):
+ first_name = forms.CharField(label="First name/given name")
+ middle_name = forms.CharField(
+ required=False,
+ label="Middle name (optional)",
+ )
+ last_name = forms.CharField(label="Last name/family name")
+ title = forms.CharField(label="Title or role in your organization")
+ email = forms.EmailField(label="Email")
+ phone = forms.CharField(label="Phone")
+
+
+class SecurityEmailForm(RegistrarForm):
+ email = forms.EmailField(
+ required=False,
+ label="Security email",
+ )
+
+
+class AnythingElseForm(RegistrarForm):
+ anything_else = forms.CharField(
+ required=False, label="Anything else we should know", widget=forms.Textarea()
+ )
+
+
+class RequirementsForm(RegistrarForm):
+ agree_check = forms.BooleanField(
+ label="I read and agree to the .gov domain requirements."
+ )
+
+
+# Empty class for the review page which gets included as part of the form, but does not
+# have any form fields itself
+class ReviewForm(RegistrarForm):
+ pass
# List of forms in our wizard. Each entry is a tuple of a name and a form
# subclass
FORMS = [
- ("organization", OrganizationForm),
- ("contact", ContactForm),
+ ("organization_type", OrganizationTypeForm),
+ ("organization_federal", OrganizationFederalForm),
+ ("organization_election", OrganizationElectionForm),
+ ("organization_contact", OrganizationContactForm),
+ ("authorizing_official", AuthorizingOfficialForm),
+ ("current_sites", CurrentSitesForm),
+ ("dotgov_domain", DotGovDomainForm),
+ ("purpose", PurposeForm),
+ ("your_contact", YourContactForm),
+ ("other_contacts", OtherContactsForm),
+ ("security_email", SecurityEmailForm),
+ ("anything_else", AnythingElseForm),
+ ("requirements", RequirementsForm),
+ ("review", ReviewForm),
]
# Dict to match up the right template with the right step. Keys here must
# match the first elements of the tuples in FORMS
TEMPLATES = {
- "organization": "application_organization.html",
- "contact": "application_contact.html",
+ "organization_type": "application_org_type.html",
+ "organization_federal": "application_org_federal.html",
+ "organization_election": "application_org_election.html",
+ "organization_contact": "application_org_contact.html",
+ "authorizing_official": "application_authorizing_official.html",
+ "current_sites": "application_current_sites.html",
+ "dotgov_domain": "application_dotgov_domain.html",
+ "purpose": "application_purpose.html",
+ "your_contact": "application_your_contact.html",
+ "other_contacts": "application_other_contacts.html",
+ "security_email": "application_security_email.html",
+ "anything_else": "application_anything_else.html",
+ "requirements": "application_requirements.html",
+ "review": "application_review.html",
}
# We need to pass our page titles as context to the templates, indexed
# by the step names
TITLES = {
- "organization": "About your organization",
- "contact": "Your organization's contact information",
+ "organization_type": "Type of organization",
+ "organization_federal": "Type of organization — Federal",
+ "organization_election": "Type of organization — Election board",
+ "organization_contact": "Organization name and mailing address",
+ "authorizing_official": "Authorizing official",
+ "current_sites": "Organization website",
+ "dotgov_domain": ".gov domain",
+ "purpose": "Purpose of your domain",
+ "your_contact": "Your contact information",
+ "other_contacts": "Other contacts for your domain",
+ "security_email": "Security email for public use",
+ "anything_else": "Anything else we should know?",
+ "requirements": "Requirements for registration and operation of .gov domains",
+ "review": "Review and submit your domain request",
}
@@ -120,16 +326,22 @@ class ApplicationWizard(LoginRequiredMixin, NamedUrlSessionWizardView):
"""Unpack the form responses onto the model object properties."""
application = DomainApplication.objects.create(creator=self.request.user)
- # organization information
- organization_data = form_dict["organization"].cleaned_data
- application.organization_type = organization_data["organization_type"]
- application.federal_branch = organization_data["federal_type"]
- application.is_election_office = organization_data["is_election_board"]
+ # organization type information
+ organization_type_data = form_dict["organization_type"].cleaned_data
+ application.organization_type = organization_type_data["organization_type"]
+
+ # federal branch information
+ federal_branch_data = form_dict["organization_federal"].cleaned_data
+ application.federal_branch = federal_branch_data["federal_type"]
+
+ # election board information
+ election_board_data = form_dict["organization_election"].cleaned_data
+ application.is_election_office = election_board_data["is_election_board"]
# contact information
- contact_data = form_dict["contact"].cleaned_data
+ contact_data = form_dict["organization_contact"].cleaned_data
application.organization_name = contact_data["organization_name"]
- application.street_address = contact_data["street_address"]
+ application.street_address = contact_data["address_line1"]
# TODO: add the rest of these fields when they are created in the forms
# This isn't really the requested_domain field
diff --git a/src/registrar/templates/401.html b/src/registrar/templates/401.html
index 0785da4c5..64bcec563 100644
--- a/src/registrar/templates/401.html
+++ b/src/registrar/templates/401.html
@@ -4,24 +4,25 @@
{% block title %}{% translate "Unauthorized" %}{% endblock %}
{% block content %}
-
{% translate "Unauthorized" %}
+
+ {% translate "Unauthorized" %}
-{% if friendly_message %}
-{{ friendly_message }}
-{% else %}
-{% translate "Authorization failed." %}
-{% endif %}
+ {% if friendly_message %}
+ {{ friendly_message }}
+ {% else %}
+ {% translate "Authorization failed." %}
+ {% endif %}
-
+
{% translate "Would you like to try logging in again?" %}
-
+
-{% if log_identifier %}
-Here's a unique identifier for this error.
-{{ log_identifier }}
-{% translate "Please include it if you contact us." %}
-{% endif %}
+ {% if log_identifier %}
+ Here's a unique identifier for this error.
+ {{ log_identifier }}
+ {% translate "Please include it if you contact us." %}
+ {% endif %}
-TODO: Content team to create a "how to contact us" footer for the error pages
-
-{% endblock %}
\ No newline at end of file
+ TODO: Content team to create a "how to contact us" footer for the error pages
+
+{% endblock %}
diff --git a/src/registrar/templates/404.html b/src/registrar/templates/404.html
index cac4df5d0..9b791a88e 100644
--- a/src/registrar/templates/404.html
+++ b/src/registrar/templates/404.html
@@ -5,9 +5,11 @@
{% block title %}{% translate "Page not found" %}{% endblock %}
{% block content %}
+
-{% translate "Page not found" %}
+ {% translate "Page not found" %}
-{% translate "The requested page could not be found." %}
+ {% translate "The requested page could not be found." %}
-{% endblock %}
\ No newline at end of file
+
+{% endblock %}
diff --git a/src/registrar/templates/500.html b/src/registrar/templates/500.html
index 9709d004f..5fbd30d2d 100644
--- a/src/registrar/templates/500.html
+++ b/src/registrar/templates/500.html
@@ -4,20 +4,21 @@
{% block title %}{% translate "Server error" %}{% endblock %}
{% block content %}
-{% translate "Server Error" %}
+
+ {% translate "Server Error" %}
-{% if friendly_message %}
-{{ friendly_message }}
-{% else %}
-{% translate "An internal server error occurred." %}
-{% endif %}
+ {% if friendly_message %}
+ {{ friendly_message }}
+ {% else %}
+ {% translate "An internal server error occurred." %}
+ {% endif %}
-{% if log_identifier %}
-Here's a unique identifier for this error.
-{{ log_identifier }}
-{% translate "Please include it if you contact us." %}
-{% endif %}
+ {% if log_identifier %}
+ Here's a unique identifier for this error.
+ {{ log_identifier }}
+ {% translate "Please include it if you contact us." %}
+ {% endif %}
-TODO: Content team to create a "how to contact us" footer for the error pages
-
-{% endblock %}
\ No newline at end of file
+ TODO: Content team to create a "how to contact us" footer for the error pages
+
+{% endblock %}
diff --git a/src/registrar/templates/application_anything_else.html b/src/registrar/templates/application_anything_else.html
new file mode 100644
index 000000000..153d547e2
--- /dev/null
+++ b/src/registrar/templates/application_anything_else.html
@@ -0,0 +1,25 @@
+
+{% extends 'application_form.html' %}
+{% load widget_tweaks %}
+
+{% block form_content %}
+
+Is there anything else we should know about your domain request?
+
+
+
+{% endblock %}
diff --git a/src/registrar/templates/application_authorizing_official.html b/src/registrar/templates/application_authorizing_official.html
new file mode 100644
index 000000000..70eb9d617
--- /dev/null
+++ b/src/registrar/templates/application_authorizing_official.html
@@ -0,0 +1,55 @@
+
+{% extends 'application_form.html' %}
+{% load widget_tweaks %}
+{% load static %}
+
+{% block form_content %}
+
+Who is the authorizing official for your organization
+
+
+
Your authorizing official is the person within your organization who can authorize your domain request. This is generally the highest ranking or highest elected official in your organization. Read more about who can serve as an authorizing official .
+
+
+
+ {% include "includes/ao_example__city.html" %}
+
+
+
We’ll contact your authorizing official to let them know that you made this request and to double check that they approve it.
+
+
+All fields are required unless they are marked optional.
+
+
+
+{% endblock %}
diff --git a/src/registrar/templates/application_contact.html b/src/registrar/templates/application_contact.html
deleted file mode 100644
index 08dbd0e37..000000000
--- a/src/registrar/templates/application_contact.html
+++ /dev/null
@@ -1,35 +0,0 @@
-
-{% extends 'application_form.html' %}
-{% load widget_tweaks %}
-
-{% block title %}Apply for a .gov domain - Your organization's contact information{% endblock %}
-
-{% block form_content %}
-Your organization's contact information
-
-What is the name and mailing address of your organization?
-
-Enter the name of the organization your represent. Your organization might be part
-of a larger entity. If so, enter information about your part of the larger entity.
-
-All fields are required unless they are marked optional.
-
-
-
-{% endblock %}
diff --git a/src/registrar/templates/application_current_sites.html b/src/registrar/templates/application_current_sites.html
new file mode 100644
index 000000000..535a8f5dc
--- /dev/null
+++ b/src/registrar/templates/application_current_sites.html
@@ -0,0 +1,19 @@
+
+{% extends 'application_form.html' %}
+{% load widget_tweaks %}
+{% load static %}
+
+{% block form_content %}
+
+
+
+{% endblock %}
diff --git a/src/registrar/templates/application_dotgov_domain.html b/src/registrar/templates/application_dotgov_domain.html
new file mode 100644
index 000000000..abe3e774b
--- /dev/null
+++ b/src/registrar/templates/application_dotgov_domain.html
@@ -0,0 +1,61 @@
+
+{% extends 'application_form.html' %}
+{% load widget_tweaks static%}
+
+{% block form_content %}
+ Before requesting a .gov domain, please make sure it meets our naming requirements. Your domain name must:
+
+ Be available
+ Be unique
+ Relate to your organization’s name, location, and/or services
+ Be clear to the general public. Your domain name must not be easily confused with other organizations.
+
+
+
+ Note that only federal agencies can request generic terms like vote.gov.
+
+ We’ll try to give you the domain you want. We first need to make sure your request meets our requirements. We’ll work with you to find the best domain for your organization.
+
+ Here are a few domain examples for your type of organization.
+
+ {% include "includes/domain_example__city.html" %}
+
+
+
+
+{% endblock %}
diff --git a/src/registrar/templates/application_form.html b/src/registrar/templates/application_form.html
index c187dd4b9..2977eaac2 100644
--- a/src/registrar/templates/application_form.html
+++ b/src/registrar/templates/application_form.html
@@ -1,13 +1,33 @@
{% extends 'base.html' %}
+{% load static widget_tweaks %}
+{% block title %}Apply for a .gov domain – {{form_titles|get_item:wizard.steps.current}}{% endblock %}
{% block content %}
-
-
- {% include 'application_sidebar.html' %}
-
-
-
- {% block form_content %}{% endblock %}
+
+
+
+ {% include 'application_sidebar.html' %}
+
+
+
+ {% if wizard.steps.prev %}
+
+
+
+ Previous step
+
+ {% endif %}
+ {{form_titles|get_item:wizard.steps.current}}
+ {% block form_content %}
+ {% if wizard.steps.next %}
+ Next
+ {% else %}
+ Submit your domain request
+ {% endif %}
+ Save
+
+
+ {% endblock %}
{% endblock %}
diff --git a/src/registrar/templates/application_org_contact.html b/src/registrar/templates/application_org_contact.html
new file mode 100644
index 000000000..a879bd126
--- /dev/null
+++ b/src/registrar/templates/application_org_contact.html
@@ -0,0 +1,44 @@
+
+{% extends 'application_form.html' %}
+{% load widget_tweaks %}
+
+{% block form_content %}
+
+
+
What is the name and mailing address of your organization?
+
+
+
Enter the name of the organization your represent. Your organization might be part
+ of a larger entity. If so, enter information about your part of the larger entity.
+
+
Once your domain is approved, the name of your organization will be publicly listed as the domain registrant.
+
+
All fields are required unless they are marked optional.
+
+
+
+
+{% endblock %}
diff --git a/src/registrar/templates/application_org_election.html b/src/registrar/templates/application_org_election.html
new file mode 100644
index 000000000..1499c1e0b
--- /dev/null
+++ b/src/registrar/templates/application_org_election.html
@@ -0,0 +1,23 @@
+
+{% extends 'application_form.html' %}
+{% load widget_tweaks %}
+{% load dynamic_question_tags %}
+
+{% block form_content %}
+
+
+{% endblock %}
diff --git a/src/registrar/templates/application_org_federal.html b/src/registrar/templates/application_org_federal.html
new file mode 100644
index 000000000..d10b2c442
--- /dev/null
+++ b/src/registrar/templates/application_org_federal.html
@@ -0,0 +1,24 @@
+
+{% extends 'application_form.html' %}
+{% load widget_tweaks %}
+{% load dynamic_question_tags %}
+
+{% block form_content %}
+
+
+{% endblock %}
diff --git a/src/registrar/templates/application_org_type.html b/src/registrar/templates/application_org_type.html
new file mode 100644
index 000000000..de399e5c3
--- /dev/null
+++ b/src/registrar/templates/application_org_type.html
@@ -0,0 +1,31 @@
+
+{% extends 'application_form.html' %}
+{% load widget_tweaks %}
+{% load dynamic_question_tags %}
+
+{% block form_content %}
+
+
+{% endblock %}
diff --git a/src/registrar/templates/application_organization.html b/src/registrar/templates/application_organization.html
deleted file mode 100644
index f994a7d1e..000000000
--- a/src/registrar/templates/application_organization.html
+++ /dev/null
@@ -1,54 +0,0 @@
-
-{% extends 'application_form.html' %}
-{% load widget_tweaks %}
-{% load dynamic_question_tags %}
-
-{% block title %}Apply for a .gov domain - About your organization{% endblock %}
-
-{% block form_content %}
-
About your organization
-
-
-{% endblock %}
diff --git a/src/registrar/templates/application_other_contacts.html b/src/registrar/templates/application_other_contacts.html
new file mode 100644
index 000000000..d40d4e1fd
--- /dev/null
+++ b/src/registrar/templates/application_other_contacts.html
@@ -0,0 +1,50 @@
+
+{% extends 'application_form.html' %}
+{% load widget_tweaks %}
+{% load static %}
+
+{% block form_content %}
+
+
We strongly encourage you to have at least two points of contact for your domain. Many organizations have an administrative point of contact and a technical point of contact. We recommend that you add at least one more contact.
+
All fields are required unless they are marked optional.
+
+
+
+{% endblock %}
diff --git a/src/registrar/templates/application_purpose.html b/src/registrar/templates/application_purpose.html
new file mode 100644
index 000000000..b890ae0e1
--- /dev/null
+++ b/src/registrar/templates/application_purpose.html
@@ -0,0 +1,25 @@
+
+{% extends 'application_form.html' %}
+{% load widget_tweaks %}
+
+{% block form_content %}
+
+
Describe your organization’s mission or the reason for your domain request. Explain how you plan to use this domain. Will you use it for a website and/or email? Are you moving your website from another top-level domain (like .com or .org)? Read about activities that are prohibited on .gov domains.
+
+
+
+{% endblock %}
diff --git a/src/registrar/templates/application_requirements.html b/src/registrar/templates/application_requirements.html
new file mode 100644
index 000000000..f5f41a877
--- /dev/null
+++ b/src/registrar/templates/application_requirements.html
@@ -0,0 +1,72 @@
+
+{% extends 'application_form.html' %}
+{% load widget_tweaks %}
+
+{% block form_content %}
+
+
The .gov domain exists to support a broad diversity of government missions and public initiatives. Generally, the .gov registry does not review or audit how government organizations use their domains.
+
+
However, misuse of an individual .gov domain can reflect upon the integrity of the entire .gov space. There are categories of misuse that are statutorily prohibited or abusive in nature.
+
+
Prohibited activities for .gov domains
+
+
Commercial purposes
+
A .gov domain must not be used for commercial purposes, such as advertising benefitting private individuals or entities.
+
+
Political campaigns
+
A .gov domain must not be used for political campaigns.
+
+
Illegal content
+
A .gov domain must not be used to distribute or promote material whose distribution violates applicable law.
+
+
Malicious cyber activity
+
.gov is a trusted and safe space. .gov domains must not distribute malware, host open redirects, or otherwise engage in malicious cyber activity.
+
+
+
Required activities for .gov domain registrants
+
+
Keep your contact information update
+
As a .gov domain registrant, maintain current and accurate contact information in the .gov registrar. We strongly recommend that you create and use a security contact.
+
+
Be responsive if we contact you
+
Registrants should respond in a timely manner to communications about required and prohibited activities.
+
+
+
Domains can be suspended or terminated for violations
+
The .gov program may need to suspend or terminate a domain registration for violations. Registrants should respond in a timely manner to communications about prohibited activities.
+
When we discover a violation, we will make reasonable efforts to contact a registrant, including:
+
+ Emails to domain contacts
+ Phone calls to domain contacts
+ Email or phone call to the authorizing official
+ Email or phone call to the government organization, a parent organization, or affiliated entities
+
+
+
+
We understand the critical importance of the availability of .gov domains. Suspending or terminating a .gov domain is reserved only for prolonged, unresolved serious violations where the registrant is non-responsive. We will make extensive efforts to contact registrants and to identify potential solutions, and will make reasonable accommodations for remediation timelines proportional to the severity of the issue.
+
+
+
HSTS preloading
+
The .gov program will preload all newly registered .gov domains for HTTP Strict Transport Security (HSTS).
+
HSTS is a simple and widely-supported standard that protects visitors by ensuring that their browsers always connect to a website over HTTPS. HSTS removes the need to redirect users from http:// to https:// URLs. (This redirection is a security risk that HSTS eliminates.)
+
HSTS preloading impacts web traffic only. Once a domain is on the HSTS preload list, modern web browsers will enforce HTTPS connections for all websites hosted on the .gov domain. Users will not be able to click through warnings to reach a site. Non-web uses of .gov (email, VPN, APIs, etc.) are not affected.
+
+
+
Acknowledgement of .gov domain requirements
+
+
+
+{% endblock %}
diff --git a/src/registrar/templates/application_review.html b/src/registrar/templates/application_review.html
new file mode 100644
index 000000000..c4ac67c6e
--- /dev/null
+++ b/src/registrar/templates/application_review.html
@@ -0,0 +1,27 @@
+
+{% extends 'application_form.html' %}
+{% load static widget_tweaks %}
+
+{% block form_content %}
+
+
+
+{% endblock %}
diff --git a/src/registrar/templates/application_security_email.html b/src/registrar/templates/application_security_email.html
new file mode 100644
index 000000000..86410f489
--- /dev/null
+++ b/src/registrar/templates/application_security_email.html
@@ -0,0 +1,21 @@
+
+{% extends 'application_form.html' %}
+{% load widget_tweaks %}
+{% load static %}
+
+{% block form_content %}
+
+
We strongly recommend that you provide a security email. This email will allow the public to report observed or suspected security issues on your domain. Security emails are made public. We recommend using an alias, like security@<domain.gov>.
+
+
+
+{% endblock %}
diff --git a/src/registrar/templates/application_sidebar.html b/src/registrar/templates/application_sidebar.html
index be713bbe8..33e06812f 100644
--- a/src/registrar/templates/application_sidebar.html
+++ b/src/registrar/templates/application_sidebar.html
@@ -1,16 +1,21 @@
-
+{% load static %}
+
{% for this_step in wizard.steps.all %}
+ {% if forloop.counter <= wizard.steps.step1 %}
- {% if forloop.counter <= wizard.steps.step1 %}
-
+
{{ form_titles|get_item:this_step }}
-
- {% else %}
- {{ form_titles|get_item:this_step }}
- {% endif %}
+
+ {% else %}
+
+ {{ form_titles|get_item:this_step }}
+
+ locked until previous steps have been completed
+
+ {% endif %}
{% endfor %}
diff --git a/src/registrar/templates/application_your_contact.html b/src/registrar/templates/application_your_contact.html
new file mode 100644
index 000000000..696f9b309
--- /dev/null
+++ b/src/registrar/templates/application_your_contact.html
@@ -0,0 +1,50 @@
+
+{% extends 'application_form.html' %}
+{% load widget_tweaks %}
+{% load static %}
+
+{% block form_content %}
+
+
+
We’ll use the following information to contact you about your domain request and, once your request is approved, about managing your domain.
+
+
If you’d like us to use a different name, email, or phone number you can make those changes below. Changing your contact information here won’t affect your login.gov account information.
+
+
The contact information you provide here won’t be public and will only be used for the .gov registry.
+
+
+
All fields are required unless they are marked optional.
+
+
+
+{% endblock %}
diff --git a/src/registrar/templates/base.html b/src/registrar/templates/base.html
index c0ebf9dca..7d2091703 100644
--- a/src/registrar/templates/base.html
+++ b/src/registrar/templates/base.html
@@ -171,10 +171,8 @@
{% block section_nav %}{% endblock %}
-
{% block hero %}{% endblock %}
{% block content %}{% endblock %}
-
{% block complementary %}{% endblock %}
diff --git a/src/registrar/templates/home.html b/src/registrar/templates/home.html
index f6601d25c..2cb5a9995 100644
--- a/src/registrar/templates/home.html
+++ b/src/registrar/templates/home.html
@@ -14,12 +14,13 @@
{% endblock %}
{% block content %}
-
This is the .gov registrar.
-
-{% if user.is_authenticated %}
-
Click here to log out.
-{% else %}
-
Click here to log in.
-{% endif %}
+
+ This is the .gov registrar.
+ {% if user.is_authenticated %}
+ Click here to log out.
+ {% else %}
+ Click here to log in.
+ {% endif %}
+
{% endblock %}
diff --git a/src/registrar/templates/includes/ao_example__city.html b/src/registrar/templates/includes/ao_example__city.html
new file mode 100644
index 000000000..cfb558376
--- /dev/null
+++ b/src/registrar/templates/includes/ao_example__city.html
@@ -0,0 +1 @@
+
Domain requests from cities must be authorized by the mayor or the equivalent highest elected official.
diff --git a/src/registrar/templates/includes/domain_example__city.html b/src/registrar/templates/includes/domain_example__city.html
new file mode 100644
index 000000000..438ea005d
--- /dev/null
+++ b/src/registrar/templates/includes/domain_example__city.html
@@ -0,0 +1,15 @@
+
Most city domains must include the two-letter state abbreviation or clearly spell out the state name. Using phrases like “City of” or “Town of” is optional.
+
Examples:
+
+ www.BlufftonIndiana.gov
+ www.CityofEudoraKS.gov
+ www.WallawallaWA.gov
+
+
+
Some cities don’t have to refer to their state.
+
+ City names that are not shared by any other U.S. city, town, or village can be requested without referring to the state. We use the Census Bureau’s National Places Gazetteer Files to determine if names are unique.
+ Certain cities are so well-known that they may not require a state reference to communicate location. We use the list of U.S. “dateline cities” in the Associated Press Stylebook to make this determination.
+ The 50 largest cities, as measured by population according to the Census Bureau, can have .gov domain names that don’t refer to their state.
+
+
diff --git a/src/registrar/templates/includes/radio_button.html b/src/registrar/templates/includes/radio_button.html
index 8f43547dd..85f64b831 100644
--- a/src/registrar/templates/includes/radio_button.html
+++ b/src/registrar/templates/includes/radio_button.html
@@ -1,14 +1,14 @@
-
-
+
- {{ choice.data.label }}
-
\ No newline at end of file
+
+ {{ choice.data.label }}
+
+
diff --git a/src/registrar/templates/profile.html b/src/registrar/templates/profile.html
index 7539abb2f..c2c0fcfa1 100644
--- a/src/registrar/templates/profile.html
+++ b/src/registrar/templates/profile.html
@@ -5,22 +5,24 @@ Edit your User Profile
{% endblock title %}
{% block content %}
-
+
{% endblock content %}
+
diff --git a/src/registrar/templates/whoami.html b/src/registrar/templates/whoami.html
index 7fde3f786..c6e597a61 100644
--- a/src/registrar/templates/whoami.html
+++ b/src/registrar/templates/whoami.html
@@ -3,7 +3,9 @@
{% block title %} Hello {% endblock %}
{% block content %}
-
Hello {{ user.last_name|default:"No last name given" }}, {{ user.first_name|default:"No first name given" }} <{{ user.email }}>!
+
+ Hello {{ user.last_name|default:"No last name given" }}, {{ user.first_name|default:"No first name given" }} <{{ user.email }}>!
-Click here to log out
+ Click here to log out
+
{% endblock %}
diff --git a/src/registrar/tests/test_views.py b/src/registrar/tests/test_views.py
index 6ee830128..552b42c17 100644
--- a/src/registrar/tests/test_views.py
+++ b/src/registrar/tests/test_views.py
@@ -67,7 +67,9 @@ class LoggedInTests(TestWithUser):
def test_application_form_view(self):
response = self.client.get("/register/", follow=True)
- self.assertContains(response, "About your organization")
+ self.assertContains(
+ response, "What kind of government organization do you represent?"
+ )
class FormTests(TestWithUser, WebTest):
@@ -92,56 +94,229 @@ class FormTests(TestWithUser, WebTest):
page = self.app.get(reverse("application")).follow()
# submitting should get back the same page if the required field is empty
result = page.form.submit()
- self.assertIn("About your organization", result)
+ self.assertIn("What kind of government organization do you represent?", result)
def test_application_form_organization(self):
# 302 redirect to the first form
page = self.app.get(reverse("application")).follow()
form = page.form
- form["organization-organization_type"] = "Federal"
+ form["organization_type-organization_type"] = "Federal"
result = page.form.submit().follow()
# Got the next form page
self.assertContains(result, "contact information")
def test_application_form_submission(self):
"""Can fill out the entire form and submit.
-
As we add additional form pages, we need to include them here to make
this test work.
"""
- page = self.app.get(reverse("application")).follow()
+ type_page = self.app.get(reverse("application")).follow()
# django-webtest does not handle cookie-based sessions well because it keeps
# resetting the session key on each new request, thus destroying the concept
# of a "session". We are going to do it manually, saving the session ID here
# and then setting the cookie on each request.
session_id = self.app.cookies[settings.SESSION_COOKIE_NAME]
- form = page.form
- form["organization-organization_type"] = "Federal"
- form["organization-federal_type"] = "Executive"
+ # ---- TYPE PAGE ----
+ type_form = type_page.form
+ type_form["organization_type-organization_type"] = "Federal"
+
# set the session ID before .submit()
self.app.set_cookie(settings.SESSION_COOKIE_NAME, session_id)
- result = page.form.submit()
+ type_result = type_page.form.submit()
# the post request should return a redirect to the next form in
# the application
- self.assertEquals(result.status_code, 302)
- self.assertEquals(result["Location"], "/register/contact/")
+ self.assertEquals(type_result.status_code, 302)
+ self.assertEquals(type_result["Location"], "/register/organization_federal/")
+ # TODO: In the future this should be conditionally dispalyed based on org type
+
+ # ---- FEDERAL BRANCH PAGE ----
# Follow the redirect to the next form page
- next_page = result.follow()
- contact_form = next_page.form
- contact_form["contact-organization_name"] = "test"
- contact_form["contact-street_address"] = "100 Main Street"
+ federal_page = type_result.follow()
+ federal_form = federal_page.form
+ federal_form["organization_federal-federal_type"] = "Executive"
+
# set the session ID before .submit()
self.app.set_cookie(settings.SESSION_COOKIE_NAME, session_id)
- result = contact_form.submit()
+ federal_result = federal_form.submit()
+
+ self.assertEquals(federal_result.status_code, 302)
+ self.assertEquals(
+ federal_result["Location"], "/register/organization_election/"
+ )
+
+ # ---- ELECTION BOARD BRANCH PAGE ----
+ # Follow the redirect to the next form page
+ election_page = federal_result.follow()
+ election_form = election_page.form
+ election_form["organization_election-is_election_board"] = True
+
+ self.app.set_cookie(settings.SESSION_COOKIE_NAME, session_id)
+ election_result = election_form.submit()
+
+ self.assertEquals(election_result.status_code, 302)
+ self.assertEquals(
+ election_result["Location"], "/register/organization_contact/"
+ )
+
+ # ---- ORG CONTACT PAGE ----
+ # Follow the redirect to the next form page
+ org_contact_page = election_result.follow()
+ org_contact_form = org_contact_page.form
+ org_contact_form["organization_contact-organization_name"] = "Testorg"
+ org_contact_form["organization_contact-address_line1"] = "address 1"
+ org_contact_form["organization_contact-us_state"] = "NY"
+ org_contact_form["organization_contact-zipcode"] = "10002"
+
+ self.app.set_cookie(settings.SESSION_COOKIE_NAME, session_id)
+ org_contact_result = org_contact_form.submit()
+
+ self.assertEquals(org_contact_result.status_code, 302)
+ self.assertEquals(
+ org_contact_result["Location"], "/register/authorizing_official/"
+ )
+ # ---- AUTHORIZING OFFICIAL PAGE ----
+ # Follow the redirect to the next form page
+ ao_page = org_contact_result.follow()
+ ao_form = ao_page.form
+ ao_form["authorizing_official-first_name"] = "Testy"
+ ao_form["authorizing_official-last_name"] = "Tester"
+ ao_form["authorizing_official-title"] = "Chief Tester"
+ ao_form["authorizing_official-email"] = "testy@town.com"
+ ao_form["authorizing_official-phone"] = "(555) 555 5555"
+
+ self.app.set_cookie(settings.SESSION_COOKIE_NAME, session_id)
+ ao_result = ao_form.submit()
+
+ self.assertEquals(ao_result.status_code, 302)
+ self.assertEquals(ao_result["Location"], "/register/current_sites/")
+
+ # ---- CURRENT SITES PAGE ----
+ # Follow the redirect to the next form page
+ current_sites_page = ao_result.follow()
+ current_sites_form = current_sites_page.form
+ current_sites_form["current_sites-current_site"] = "www.city.com"
+
+ self.app.set_cookie(settings.SESSION_COOKIE_NAME, session_id)
+ current_sites_result = current_sites_form.submit()
+
+ self.assertEquals(current_sites_result.status_code, 302)
+ self.assertEquals(current_sites_result["Location"], "/register/dotgov_domain/")
+
+ # ---- DOTGOV DOMAIN PAGE ----
+ # Follow the redirect to the next form page
+ dotgov_page = current_sites_result.follow()
+ dotgov_form = dotgov_page.form
+ dotgov_form["dotgov_domain-dotgov_domain"] = "city"
+
+ self.app.set_cookie(settings.SESSION_COOKIE_NAME, session_id)
+ dotgov_result = dotgov_form.submit()
+
+ self.assertEquals(dotgov_result.status_code, 302)
+ self.assertEquals(dotgov_result["Location"], "/register/purpose/")
+
+ # ---- PURPOSE DOMAIN PAGE ----
+ # Follow the redirect to the next form page
+ purpose_page = dotgov_result.follow()
+ purpose_form = purpose_page.form
+ purpose_form["purpose-purpose_field"] = "Purpose of the site"
+
+ self.app.set_cookie(settings.SESSION_COOKIE_NAME, session_id)
+ purpose_result = purpose_form.submit()
+
+ self.assertEquals(purpose_result.status_code, 302)
+ self.assertEquals(purpose_result["Location"], "/register/your_contact/")
+
+ # ---- YOUR CONTACT INFO PAGE ----
+ # Follow the redirect to the next form page
+ your_contact_page = purpose_result.follow()
+ your_contact_form = your_contact_page.form
+
+ your_contact_form["your_contact-first_name"] = "Testy you"
+ your_contact_form["your_contact-last_name"] = "Tester you"
+ your_contact_form["your_contact-title"] = "Admin Tester"
+ your_contact_form["your_contact-email"] = "testy-admin@town.com"
+ your_contact_form["your_contact-phone"] = "(555) 555 5556"
+
+ self.app.set_cookie(settings.SESSION_COOKIE_NAME, session_id)
+ your_contact_result = your_contact_form.submit()
+
+ self.assertEquals(your_contact_result.status_code, 302)
+ self.assertEquals(your_contact_result["Location"], "/register/other_contacts/")
+
+ # ---- OTHER CONTACTS PAGE ----
+ # Follow the redirect to the next form page
+ other_contacts_page = your_contact_result.follow()
+ other_contacts_form = other_contacts_page.form
+
+ other_contacts_form["other_contacts-first_name"] = "Testy2"
+ other_contacts_form["other_contacts-last_name"] = "Tester2"
+ other_contacts_form["other_contacts-title"] = "Another Tester"
+ other_contacts_form["other_contacts-email"] = "testy2@town.com"
+ other_contacts_form["other_contacts-phone"] = "(555) 555 5557"
+
+ self.app.set_cookie(settings.SESSION_COOKIE_NAME, session_id)
+ other_contacts_result = other_contacts_form.submit()
+
+ self.assertEquals(other_contacts_result.status_code, 302)
+ self.assertEquals(
+ other_contacts_result["Location"], "/register/security_email/"
+ )
+
+ # ---- SECURITY EMAIL PAGE ----
+ # Follow the redirect to the next form page
+ security_email_page = other_contacts_result.follow()
+ security_email_form = security_email_page.form
+
+ security_email_form["security_email-email"] = "security@city.com"
+
+ self.app.set_cookie(settings.SESSION_COOKIE_NAME, session_id)
+ security_email_result = security_email_form.submit()
+
+ self.assertEquals(security_email_result.status_code, 302)
+ self.assertEquals(security_email_result["Location"], "/register/anything_else/")
+
+ # ---- ANYTHING ELSE PAGE ----
+ # Follow the redirect to the next form page
+ anything_else_page = security_email_result.follow()
+ anything_else_form = anything_else_page.form
+
+ anything_else_form["anything_else-anything_else"] = "No"
+
+ self.app.set_cookie(settings.SESSION_COOKIE_NAME, session_id)
+ anything_else_result = anything_else_form.submit()
+
+ self.assertEquals(anything_else_result.status_code, 302)
+ self.assertEquals(anything_else_result["Location"], "/register/requirements/")
+
+ # ---- REQUIREMENTS PAGE ----
+ # Follow the redirect to the next form page
+ requirements_page = anything_else_result.follow()
+ requirements_form = requirements_page.form
+
+ requirements_form["requirements-agree_check"] = True
+
+ self.app.set_cookie(settings.SESSION_COOKIE_NAME, session_id)
+ requirements_result = requirements_form.submit()
+
+ self.assertEquals(requirements_result.status_code, 302)
+ self.assertEquals(requirements_result["Location"], "/register/review/")
+
+ # ---- REVIEW AND FINSIHED PAGES ----
+ # Follow the redirect to the next form page
+ review_page = requirements_result.follow()
+ review_form = review_page.form
# final submission results in a redirect to the "finished" URL
- self.assertEquals(result.status_code, 302)
- self.assertEquals(result["Location"], "/register/finished/")
- # the finished URL (for now) returns a redirect to /
+ self.app.set_cookie(settings.SESSION_COOKIE_NAME, session_id)
+ review_result = review_form.submit()
+
+ self.assertEquals(review_result.status_code, 302)
+ self.assertEquals(review_result["Location"], "/register/finished/")
+
# following this redirect is a GET request, so include the cookie
# here too.
self.app.set_cookie(settings.SESSION_COOKIE_NAME, session_id)