diff --git a/js/components/fullpagenotice.js b/js/components/fullpagenotice.js index f84475bf..eb58db8e 100644 --- a/js/components/fullpagenotice.js +++ b/js/components/fullpagenotice.js @@ -1,33 +1,15 @@ -import checkboxinput from './checkbox_input' -import FormMixin from '../mixins/form' - export default { name: 'fullpagenotice', - mixins: [FormMixin], - - components: { - checkboxinput, - }, - data: function() { return { - agree: false, - visible: true, + visible: false, } }, - mounted: function() { - this.$root.$on('field-change', this.handleValidChange) - }, - methods: { - handleValidChange: function(event) { - this.agree = event.value - }, - - agreeToTermsClick: function() { - this.visible = false + displayNotice: function() { + this.visible = true }, }, } diff --git a/styles/components/_full_page_notice.scss b/styles/components/_full_page_notice.scss index e0c2812e..6f40fd2a 100644 --- a/styles/components/_full_page_notice.scss +++ b/styles/components/_full_page_notice.scss @@ -6,6 +6,7 @@ padding: $gap*4 0; position: fixed; right: 0; + text-align: left; top: 0; z-index: 999; diff --git a/styles/sections/_login.scss b/styles/sections/_login.scss index a4853230..5236c829 100644 --- a/styles/sections/_login.scss +++ b/styles/sections/_login.scss @@ -19,6 +19,10 @@ max-width: 25rem; margin: ($gap * 2) auto; } + + .login-banner__button { + margin-right: 0; + } } } } diff --git a/templates/fragments/dod_notice.html b/templates/fragments/dod_notice.html index 201fee6d..6f9b5670 100644 --- a/templates/fragments/dod_notice.html +++ b/templates/fragments/dod_notice.html @@ -1,41 +1,31 @@ -
-
-
-

You are accessing a U.S. Government (USG) Information System (IS) that is provided for USG-authorized use only.

+
+ -

By using this IS (which includes any device attached to this IS), you consent to the following conditions:

+
+
+
+

You are accessing a U.S. Government (USG) Information System (IS) that is provided for USG-authorized use only.

-
    -
  • The USG routinely intercepts and monitors communications on this IS for purposes including, but not limited to, penetration testing, COMSEC monitoring, network operations and defense, personnel misconduct (PM), law enforcement (LE), and counterintelligence (CI) investigations.
  • +

    By using this IS (which includes any device attached to this IS), you consent to the following conditions:

    -
  • At any time, the USG may inspect and seize data stored on this IS.
  • +
      +
    • The USG routinely intercepts and monitors communications on this IS for purposes including, but not limited to, penetration testing, COMSEC monitoring, network operations and defense, personnel misconduct (PM), law enforcement (LE), and counterintelligence (CI) investigations.
    • -
    • Communications using, or data stored on, this IS are not private, are subject to routine monitoring, interception, and search, and may be disclosed or used for any USG-authorized purpose.
    • +
    • At any time, the USG may inspect and seize data stored on this IS.
    • -
    • This IS includes security measures (e.g., authentication and access controls) to protect USG interests--not for your personal benefit or privacy.
    • +
    • Communications using, or data stored on, this IS are not private, are subject to routine monitoring, interception, and search, and may be disclosed or used for any USG-authorized purpose.
    • -
    • Notwithstanding the above, using this IS does not constitute consent to PM, LE or CI investigative searching or monitoring of the content of privileged communications, or work product, related to personal representation or services by attorneys, psychotherapists, or clergy, and their assistants. Such communications and work product are private and confidential. See User Agreement for details.
    • -
    +
  • This IS includes security measures (e.g., authentication and access controls) to protect USG interests--not for your personal benefit or privacy.
  • - -
    -
    - - - - -
    -
    -
    +
  • Notwithstanding the above, using this IS does not constitute consent to PM, LE or CI investigative searching or monitoring of the content of privileged communications, or work product, related to personal representation or services by attorneys, psychotherapists, or clergy, and their assistants. Such communications and work product are private and confidential. See User Agreement for details.
  • +
-
- {{ "common.continue" | translate }} + + {{ "common.continue" | translate }} +
diff --git a/templates/login.html b/templates/login.html index c7cebe79..67549734 100644 --- a/templates/login.html +++ b/templates/login.html @@ -6,8 +6,6 @@ {% block content %} - {% include "fragments/dod_notice.html" %} -