Skip to content

Commit

Permalink
Merge branch 'master' into 2328-add-log-metric-filtersalarms-for-aws-…
Browse files Browse the repository at this point in the history
…cis-benchmarks
  • Loading branch information
Matthew-Grayson authored Oct 19, 2023
2 parents 4d67c64 + c9d1049 commit bbc537f
Show file tree
Hide file tree
Showing 2 changed files with 95 additions and 30 deletions.
81 changes: 54 additions & 27 deletions frontend/src/pages/AuthLogin/AuthLogin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,34 +93,61 @@ export const AuthLogin: React.FC<{ showSignUp?: boolean }> = ({
!showSignUp && !(process.env.NODE_ENV === 'development')
}
/>
<div className="banner_header">**Warning**</div>
<div className="banner_login">
{' '}
This system contains U.S. Government Data. Unauthorized use of this
system is prohibited. Use of this computer system, authorized or
unauthorized, constitutes consent to monitoring of this system.
<div className="notification_box">
<div className="platform_header">PLATFORM NOTIFICATION</div>
<div className="notification_header">
Important Notice: Temporary Downtime During Crossfeed Migration
</div>
<div className="temp_notification">
{' '}
The Crossfeed environment is moving. The migration will require a
temporary downtime of approximately one week.
</div>
<div className="temp_notification">
{' '}
The downtime will begin on Wednesday, October 25, through the end
of day Wednesday, November 01.{' '}
</div>
<div className="temp_notification">
For additional information, please click{' '}
<a href="https://s3.amazonaws.com/crossfeed.cyber.dhs.gov/Notice.pdf">
here
</a>
</div>
</div>
<div className="banner_login">
{' '}
This computer system, including all related equipment, networks, and
network devices (specifically including Internet access) are
provided only for authorized U.S. Government use. U.S. Government
computer systems may be monitored for all lawful purposes, including
to ensure that their use is authorized, for management of the
system, to facilitate protection against unauthorized access, and to
verify security procedures, survivability, and operational security.
Monitoring includes active attacks by authorized U.S. Government
entities to test or verify the security of this system. During
monitoring, information may be examined, recorded, copied and used
for authorized purposes. All information, including personal
information, placed or sent over this system may be monitored.
</div>
<div className="banner_login">
{' '}
Unauthorized use may subject you to criminal prosecution. Evidence
of unauthorized use collected during monitoring may be used for
administrative, criminal, or other adverse action. Use of this
system constitutes consent to monitoring for these purposes.
<div className="banner_box">
<div className="banner_header">**Warning**</div>
<div className="banner_login">
{' '}
This system contains U.S. Government Data. Unauthorized use of
downtime will begin on Monday, October 23, through the end of
Monday, Monday, Monday, Monday, October 30. unauthorized,
constitutes system.
</div>
<div className="banner_login">
{' '}
This computer system, including all related equipment, networks,
(specifically including Internet access) are provided only for
authorized U.S. Government use. U.S. Government computer systems
monitored for all lawful purposes, authorized, for management of
the system, system, to system, to system, to facilitate protection
against unauthorized access, and verify security procedures,
procedures, procedures, procedures, survivability, operational
operational operational operational Monitoring includes active
attacks by authorized U.S. Government entities to test or verify
the security the security of this system. During monitoring,
monitoring, information may be examined, examined, recorded,
copied and used for authorized information, including personal
information, placed or sent over or sent over or sent over this
system may be may be may be monitored.
</div>
<div className="banner_login">
{' '}
Unauthorized use may subject you to criminal prosecution. Evidence
unauthorized use collected during monitoring may be used for
administrative, criminal, or other adverse action. Use of this
constitutes consent to monitoring for these purposes.
</div>
</div>
</ThemeProvider>
</AuthForm>
Expand Down
44 changes: 41 additions & 3 deletions frontend/src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,49 @@ form[data-amplify-authenticator-setup-totp] {

}

.notification_box {
border-width: 3px;
border-style: solid;
border-color: hsl(190, 95%, 30%);
}
.platform_header {
padding-left: 105px;
padding-top: 10px;
color: hsl(190, 95%, 30%);
font-weight: bold;
font-size: 20px;
background-color: white;
}

.notification_header {
transition: top .2s;
background-color: white;
font-weight: bold;
padding-left: 10px;

}

.temp_notification {
position: relative;
padding-left: 10px;
padding-top: 10px;
padding-bottom: 20px;
transition: top .2s;
background-color: white;

}

.banner_box {
border-width: 3px;
border-style: solid;
border-color: hsl(190, 95%, 30%);
}

.banner_header {
padding-left: 195px;
padding-left: 185px;
padding-top: 10px;
transition: top .2s;
background-color: #DDEFF5;
background-color: white;
font-weight: bold;
}

Expand All @@ -110,5 +148,5 @@ form[data-amplify-authenticator-setup-totp] {
padding-top: 10px;
padding-bottom: 20px;
transition: top .2s;
background-color: #DDEFF5;
background-color: white;
}

0 comments on commit bbc537f

Please sign in to comment.