Link and text updates (#700)

* Update application_dotgov_domain.html

* Update footer.html

* Update application_authorizing_official.html

* Update application_dotgov_domain.html

* Update 403.html

* Update 403.html

* Update 500.html

* Update 500.html

* Update 403.html

* Update 404.html

* Update domain_security_email.html

* Update 401.html

* Update domain_authorizing_official.html

* Update src/registrar/templates/includes/footer.html

Co-authored-by: Neil MartinsenBurrell <neil.martinsen-burrell@gsa.gov>

* Remove todo styling from public site links

* Update 401.html

* Update footer.html

---------

Co-authored-by: Neil MartinsenBurrell <neil.martinsen-burrell@gsa.gov>
Co-authored-by: igorkorenfeld <igor.korenfeld@gsa.gov>
This commit is contained in:
Michelle Rago 2023-06-09 16:16:02 -04:00 committed by GitHub
parent 097ad00c64
commit 995250e4dd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 29 additions and 36 deletions

View file

@ -124,7 +124,6 @@ h2 {
} }
/* Make "placeholder" links visually obvious */ /* Make "placeholder" links visually obvious */
a[href^="https://federalist-"]::after,
a[href$="todo"]::after { a[href$="todo"]::after {
background-color: yellow; background-color: yellow;
color: color(blue-80v); color: color(blue-80v);

View file

@ -1,5 +1,6 @@
{% extends "base.html" %} {% extends "base.html" %}
{% load i18n static %} {% load i18n static %}
{% load url_helpers %}
{% block title %}{% translate "Unauthorized | " %}{% endblock %} {% block title %}{% translate "Unauthorized | " %}{% endblock %}
@ -25,7 +26,7 @@
Would you like to <a href="{% url 'login' %}"> try logging in again?</a> Would you like to <a href="{% url 'login' %}"> try logging in again?</a>
</p> </p>
<p> <p>
If you would like help with this error <a href="https://federalist-877ab29f-16f6-4f12-961c-96cf064cf070.sites.pages.cloud.gov/site/cisagov/getgov-home/contact/"> contact us </a> If you'd like help with this error <a href="{% public_site_url 'contact/' %}"> contact us </a>.
</p> </p>
{% if log_identifier %} {% if log_identifier %}

View file

@ -1,5 +1,6 @@
{% extends "base.html" %} {% extends "base.html" %}
{% load i18n static %} {% load i18n static %}
{% load url_helpers %}
{% block title %}{% translate "Forbidden | " %}{% endblock %} {% block title %}{% translate "Forbidden | " %}{% endblock %}
@ -22,10 +23,10 @@
{% endif %} {% endif %}
<p> <p>
You must be an authorized user and need to be signed in to view this page. You must be an authorized user and need to be signed in to view this page.
Would you like to <a href="{% url 'login' %}"> try logging in again?</a> Would you like to <a href="{% url 'login' %}"> try logging in again</a>?
</p> </p>
<p> <p>
If you would like help with this error <a href="https://federalist-877ab29f-16f6-4f12-961c-96cf064cf070.sites.pages.cloud.gov/site/cisagov/getgov-home/contact/"> contact us </a> If you'd like help with this error <a href="{% public_site_url 'contact' %}"> contact us </a>.
</p> </p>
{% if log_identifier %} {% if log_identifier %}

View file

@ -1,5 +1,6 @@
{% extends "base.html" %} {% extends "base.html" %}
{% load i18n static %} {% load i18n static %}
{% load url_helpers %}
{% block title %}{% translate "Page not found | " %}{% endblock %} {% block title %}{% translate "Page not found | " %}{% endblock %}
@ -14,7 +15,7 @@
{% translate "Status 404" %} {% translate "Status 404" %}
</h2> </h2>
<p> Try going to the <a href="/">homepage</a>. If you cant find what youre looking for, <a href= "https://federalist-877ab29f-16f6-4f12-961c-96cf064cf070.sites.pages.cloud.gov/site/cisagov/getgov-home/contact/">contact us.</a> <p> Try going to the <a href="/">homepage</a>. If you cant find what youre looking for, <a href="{% public_site_url 'contact' %}"> contact us </a>.
</p> </p>
</div> </div>

View file

@ -1,5 +1,6 @@
{% extends "base.html" %} {% extends "base.html" %}
{% load i18n static %} {% load i18n static %}
{% load url_helpers %}
{% block title %}{% translate "Server error | " %}{% endblock %} {% block title %}{% translate "Server error | " %}{% endblock %}
@ -18,7 +19,7 @@
{% else %} {% else %}
<p> <p>
Sorry! Try waiting a few minutes and then reloading the page. Sorry! Try waiting a few minutes and then reloading the page.
<a href="https://federalist-877ab29f-16f6-4f12-961c-96cf064cf070.sites.pages.cloud.gov/site/cisagov/getgov-home/contact/"> Contact us </a> if you need help. <a href="{% public_site_url 'contact' %}"> contact us </a> if you need help.
</p> </p>
{% endif %} {% endif %}

View file

@ -1,22 +1,19 @@
{% extends 'application_form.html' %} {% extends 'application_form.html' %}
{% load field_helpers %} {% load field_helpers url_helpers %}
{% block form_instructions %} {% block form_instructions %}
<h2 class="margin-bottom-05"> <h2 class="margin-bottom-05">
Who is the authorizing official for your organization? Who is the authorizing official for your organization?
</h2> </h2>
<p>Your authorizing official is the person within your organization who can authorize <p>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.</p>
your domain request. This is generally the highest-ranking or highest-elected official
in your organization. Read more about <a href="{% url 'todo' %}">who can serve as an
authorizing official</a>.</p>
<div class="ao_example"> <div class="ao_example">
{% include "includes/ao_example.html" %} {% include "includes/ao_example.html" %}
</div> </div>
<p>Well contact your authorizing official to let them know that you made this request <p>We might contact your authorizing official, or their office, to double check that they approve this request. Read more about <a href="{% public_site_url 'domains/eligibility/#you-must-have-approval-from-an-authorizing-official-within-your-organization' %}">who can serve as an authorizing official</a>.</p>
and to double check that they approve it.</p>
{% endblock %} {% endblock %}

View file

@ -1,9 +1,9 @@
{% extends 'application_form.html' %} {% extends 'application_form.html' %}
{% load static field_helpers %} {% load static field_helpers url_helpers %}
{% block form_instructions %} {% block form_instructions %}
<p>Before requesting a .gov domain, <a href="{% url 'todo' %}">please make sure it <p>Before requesting a .gov domain, <a href="{% public_site_url 'domains/choosing' %}">please make sure it
meets our naming requirements.</a> Your domain name must: meets our naming requirements</a>. Your domain name must:
<ul class="usa-list"> <ul class="usa-list">
<li>Be available </li> <li>Be available </li>
<li>Be unique </li> <li>Be unique </li>

View file

@ -1,5 +1,5 @@
{% extends "domain_base.html" %} {% extends "domain_base.html" %}
{% load static field_helpers%} {% load static field_helpers url_helpers %}
{% block title %}Domain authorizing official | {{ domain.name }} | {% endblock %} {% block title %}Domain authorizing official | {{ domain.name }} | {% endblock %}
@ -11,9 +11,7 @@
<p>Your authorizing official is the person within your organization who can <p>Your authorizing official is the person within your organization who can
authorize domain requests. This is generally the highest-ranking or authorize domain requests. This is generally the highest-ranking or
highest-elected official in your organization. <a class="usa-link" highest-elected official in your organization. Read more about <a class="usa-link" href="{% public_site_url 'domains/eligibility/#you-must-have-approval-from-an-authorizing-official-within-your-organization' %}">who can serve as an authorizing official</a>.</p>
href="https://federalist-877ab29f-16f6-4f12-961c-96cf064cf070.sites.pages.cloud.gov/site/cisagov/getgov-home/domains/eligibility/#you-must-have-approval-from-an-authorizing-official-within-your-organization">Read more about who can serve
as an authorizing official.</a></p>
{% include "includes/required_fields.html" %} {% include "includes/required_fields.html" %}

View file

@ -1,5 +1,5 @@
{% extends "domain_base.html" %} {% extends "domain_base.html" %}
{% load static field_helpers %} {% load static field_helpers url_helpers %}
{% block title %}Domain security email | {{ domain.name }} | {% endblock %} {% block title %}Domain security email | {{ domain.name }} | {% endblock %}
@ -7,7 +7,7 @@
<h1>Domain security email</h1> <h1>Domain security email</h1>
<p>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 and included in the <a href="https://federalist-877ab29f-16f6-4f12-961c-96cf064cf070.sites.pages.cloud.gov/site/cisagov/getgov-home/about/data/">.gov domain data</a> we provide.</p> <p>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 and included in the <a href="{% public_site_url 'about/data/' %}">.gov domain data</a> we provide.</p>
<p>A security contact should be capable of evaluating or triaging security reports for your entire domain. Use a team email address, not an individuals email. We recommend using an alias, like security@domain.gov.</p> <p>A security contact should be capable of evaluating or triaging security reports for your entire domain. Use a team email address, not an individuals email. We recommend using an alias, like security@domain.gov.</p>

View file

@ -1,4 +1,5 @@
{% load static %} {% load static %}
{% load url_helpers %}
<footer class="usa-footer"> <footer class="usa-footer">
<div class="usa-footer__secondary-section"> <div class="usa-footer__secondary-section">
@ -26,11 +27,11 @@
<address class="usa-footer__address"> <address class="usa-footer__address">
<div class="usa-footer__contact-info grid-row grid-gap-md"> <div class="usa-footer__contact-info grid-row grid-gap-md">
<div class="grid-col-auto"> <div class="grid-col-auto">
<a href="https://federalist-877ab29f-16f6-4f12-961c-96cf064cf070.sites.pages.cloud.gov/site/cisagov/getgov-home/help/"> Help </a> <a href="{% public_site_url 'help/' %}" class="usa-link"> Help </a>
</div> </div>
<span class=""> | </span> <span class=""> | </span>
<div class="grid-col-auto"> <div class="grid-col-auto">
<a href="https://federalist-877ab29f-16f6-4f12-961c-96cf064cf070.sites.pages.cloud.gov/site/cisagov/getgov-home/contact/" class="usa-link">Contact us</a> <a href="{% public_site_url 'contact/' %}" class="usa-link">Contact us</a>
</div> </div>
</div> </div>
</address> </address>
@ -73,11 +74,8 @@
<div class="usa-identifier__container"> <div class="usa-identifier__container">
<ul class="usa-identifier__required-links-list"> <ul class="usa-identifier__required-links-list">
<li class="usa-identifier__required-links-item"> <li class="usa-identifier__required-links-item">
<a <a href="{% public_site_url 'about/' %}"
href="https://federalist-877ab29f-16f6-4f12-961c-96cf064cf070.sites.pages.cloud.gov/site/cisagov/getgov-home/about/" class="usa-identifier__required-link usa-link">About .gov</a>
class="usa-identifier__required-link usa-link"
>About .gov</a
>
</li> </li>
<li class="usa-identifier__required-links-item"> <li class="usa-identifier__required-links-item">
<a <a
@ -87,9 +85,7 @@
> >
</li> </li>
<li class="usa-identifier__required-links-item"> <li class="usa-identifier__required-links-item">
<a href="https://federalist-877ab29f-16f6-4f12-961c-96cf064cf070.sites.pages.cloud.gov/site/cisagov/getgov-home/privacy-policy/" class="usa-identifier__required-link usa-link" <a href="{% public_site_url 'privacy-policy/' %}" class="usa-identifier__required-link usa-link">Privacy policy</a>
>Privacy policy</a
>
</li> </li>
<li class="usa-identifier__required-links-item"> <li class="usa-identifier__required-links-item">
<a href="https://www.dhs.gov/accessibility" class="usa-identifier__required-link usa-link usa-link--external" <a href="https://www.dhs.gov/accessibility" class="usa-identifier__required-link usa-link usa-link--external"
@ -97,9 +93,8 @@
> >
</li> </li>
<li class="usa-identifier__required-links-item"> <li class="usa-identifier__required-links-item">
<a href="https://federalist-877ab29f-16f6-4f12-961c-96cf064cf070.sites.pages.cloud.gov/site/cisagov/getgov-home/vulnerability-disclosure-policy/" class="usa-identifier__required-link usa-link" <a href="{% public_site_url 'vulnerability-disclosure-policy/' %}" class="usa-identifier__required-link usa-link"
>Vulnerability disclosure policy</a >Vulnerability disclosure policy</a>
>
</li> </li>
<li class="usa-identifier__required-links-item"> <li class="usa-identifier__required-links-item">
<a href="https://www.cisa.gov/cisa-no-fear-act-reporting" class="usa-identifier__required-link usa-link" <a href="https://www.cisa.gov/cisa-no-fear-act-reporting" class="usa-identifier__required-link usa-link"