Merge pull request #2247 from GSA/2227-acceptable-use-policy

2227 - Adding Acceptable Use Policy page
This commit is contained in:
Beverly Nguyen
2025-01-15 10:12:33 -08:00
committed by GitHub
5 changed files with 50 additions and 1 deletions

View File

@@ -306,6 +306,13 @@ def studio():
)
@main.route("/acceptable-use-policy")
def acceptable_use_policy():
return render_template(
"views/acceptable-use-policy.html",
)
# --- Redirects --- #

View File

@@ -54,6 +54,9 @@
<a href="https://www.gsa.gov/reference/reports/budget-performance"
class="usa-identifier__required-link">Performance reports</a>
</li>
<li class="usa-identifier__required-links-item">
<a href="/acceptable-use-policy" class="usa-identifier__required-link">Acceptable use policy</a>
</li>
<li class="usa-identifier__required-links-item">
<a href="https://www.gsa.gov/website-information/website-policies"
class="usa-identifier__required-link">Privacy policy</a>

View File

@@ -48,7 +48,7 @@
<header class="usa-header usa-header--extended">
<div class="usa-nav-container">
<div class="usa-navbar">
<div class="display-flex flex-align-center flex-justify">
<div class="display-flex flex-align-center flex-justify width-full">
<div class="usa-logo display-flex flex-align-center flex-justify" id="-logo">
<div class="logo-img display-flex">
<a href="/">

View File

@@ -0,0 +1,38 @@
{% extends "base.html" %}
{% set page_title = "Acceptable Use Policy" %}
{% block per_page_title %}{{page_title}}{% endblock %}
{% block content_column_content %}
<section class="usa-prose">
<h1>{{page_title}}</h1>
<p>Use of the application indicates agreement with this acceptable use policy.</p>
<p>Acceptable uses of Notify.gov for this trial period include:</p>
<ul>
<li>Configuring test services and sending test SMS messages to learn and demonstrate how Notify.gov works.</li>
<li>Reviewing data provided by Notify.gov and configuring available settings.</li>
</ul>
<p>
In order to help us keep Notify.gov secure, we require that you use your account appropriately. When you use Notify.gov, you agree that youll respect these rules of behavior:
</p>
<ul>
<li>Conduct only authorized business on the system.</li>
<li>Maintain the confidentiality of your authentication credentials; a Notify.gov operator should never ask you to reveal them. We recommend using a password manager and strong credentials.</li>
<li>Log out when you no longer need session access. Never leave your computer unattended while logged into Notify.gov.</li>
<li>Report all security incidents or suspected incidents (such as improper or suspicious acts) related to Notify.gov systems and networks to Notify.gov support.</li>
<li>Safeguard system resources against waste, loss, abuse, unauthorized use or disclosure, and misappropriation.</li>
<li>Dont process U.S. classified national security information on the system.</li>
<li>Dont browse, search or reveal information hosted by Notify.gov except as required to perform your legitimate tasks or assigned duties.</li>
<li>Dont retrieve information, or in any other way disclose information, for someone who does not have authority to access that information.</li>
<li>Dont intentionally use a client that makes use of obsolete or insecure encryption algorithms.</li>
<li>Dont configure your browser to ignore security warnings which may involve your connection with Notify.gov; report warnings that you cant explain to Notify.gov support.</li>
<li>If you believe youve been granted more access than necessary to perform your legitimate tasks or assigned duties, immediately notify Notify.gov support.</li>
<li>Dont share your account with another person or create anonymous or group accounts. Your account is just for you.</li>
</ul>
<p>Access to systems and networks owned by Notify.gov is governed by, and subject to, all federal laws, including, but not limited to, the Privacy Act, 5 U.S.C. 552a, if the applicable Notify.gov system maintains individual Privacy Act information. Access to Notify.gov systems constitutes consent to the retrieval and disclosure of the information within the scope of your authorized access, subject to the Privacy Act, and applicable state and federal laws.</p>
<p>Please contact Notify.gov support if you have questions about these rules or dont understand them.</p>
</section>
{% endblock %}

View File

@@ -19,6 +19,7 @@ EXCLUDED_ENDPOINTS = tuple(
{
"about_notify",
"about_security",
"acceptable_use_policy",
"accept_invite",
"accept_org_invite",
"accessibility_statement",