Skip to content

Commit

Permalink
VEBT-24 Updated 'Privacy Act Statement' on 22-10282 Intro Page (#32209)
Browse files Browse the repository at this point in the history
* Updated 'Privacy Act Statement' on 22-10282 Intro Page

* content feedback changes to wording and bullet point type

* 'Respondent Burden' section added to Privacy Act Statement
  • Loading branch information
mghisilieri authored Oct 3, 2024
1 parent dfaeef0 commit 9d822e2
Show file tree
Hide file tree
Showing 3 changed files with 69 additions and 24 deletions.
54 changes: 54 additions & 0 deletions src/applications/edu-benefits/10282/components/OmbInfo.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
import React from 'react';

import { CONTACTS } from '@department-of-veterans-affairs/component-library/contacts';

const OmbInfo = () => {
const resBurden = 10;

return (
<va-omb-info
res-burden={resBurden}
omb-number="2900-0922"
exp-date="9/30/2026"
>
<p>
<strong>Respondent Burden:</strong> We need this information to
determine your eligibility for benefits (38 U.S.C. 3471). Title 38,
United States Code, allows us to ask for this information. We estimate
that you will need an average of {resBurden} minutes to review the
instructions, find the information, and complete this form. The VA
cannot conduct or sponsor a collection of information unless a valid OMB
(Office of Management and Budget) control number is displayed. You are
not required to respond to a collection of information if this number is
not displayed. Valid OMB control numbers can be located on the OMB
Internet Page at www.reginfo.gov/public/do/PRAMain. If desired, you can
call <va-telephone contact={CONTACTS.VA_BENEFITS} international /> to
get information on where to send comments or suggestions about this
form.
</p>

<p>
<strong>Privacy Act information:</strong> VA will not disclose
information collected on this form to any source other than what has
been authorized under the Privacy Act of 1974 or Title 38, Code of
Federal Regulations 1.576 for routine uses (i.e., VA sends educational
forms or letters with a Veteran’s identifying information to the
Veteran’s school or training establishment to (1) assist the Veteran in
the completion of claims forms or (2) VA obtains further information as
may be necessary from the school for VA to properly process the
Veteran’s education claim or to monitor his or her progress during
training) as identified in the VA system of records. 58VA21/22/28,
Compensation, Pension, Education, and Veteran Readiness and Employment
Records - VA, published in the Federal Register. Your response is
required to obtain or retain benefits under this cost-free IBM
SkillsBuild Cybersecurity Training Program. While you do not have to
respond, VA cannot consider you approved to participate until we receive
this information per (38 U.S.C. 3452(b) and 3501(a)). Your responses are
confidential (38 U.S.C. 5701). Information submitted is subject to
verification through computer matching programs with other agencies.
</p>
</va-omb-info>
);
};

export default OmbInfo;
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ import React, { useEffect } from 'react';
import PropTypes from 'prop-types';

import FormTitle from 'platform/forms-system/src/js/components/FormTitle';

import scrollToTop from 'platform/utilities/ui/scrollToTop';
import { focusElement } from 'platform/utilities/ui';

import OmbInfo from '../components/OmbInfo';

const IntroductionPage = ({ router }) => {
useEffect(() => {
focusElement('.schemaform-title > h1');
Expand All @@ -31,10 +32,10 @@ const IntroductionPage = ({ router }) => {
<h2 className="vads-u-margin-y--3 mobile-lg:vads-u-margin-y--4">
What to know before you fill out this form
</h2>
<ul className="intro-ul">
<ul>
<li>
You may be eligible for this program if you’re a Veteran, a service
member, or a family member or caregiver of a Veteran.
You may be eligible for this program if you’re a Veteran; service
member; or the spouse, child, or caregiver of a Veteran.
</li>
<li>
After you submit your form, you can print the confirmation page for
Expand All @@ -55,13 +56,7 @@ const IntroductionPage = ({ router }) => {
/>
</div>

<div className="intro-omb-info">
<va-omb-info
res-burden={10}
omb-number="2900-0922"
exp-date="9/30/2026"
/>
</div>
<OmbInfo />
</article>
);
};
Expand Down
22 changes: 9 additions & 13 deletions src/applications/edu-benefits/10282/sass/10282-edu-benefits.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,26 +10,22 @@
margin-bottom: 1rem;
}

.intro-ul {
list-style-type: disc;
}

@media (max-width: $small-screen) {

.form-22-10282-container{
padding-inline: .5rem;
.form-22-10282-container {
padding-inline: 0.5rem;
}

.form-22-10282-container .schemaform-buttons,
.form-22-10282-container .form-progress-buttons{
.form-22-10282-container .form-progress-buttons {
display: flex;
flex-direction: column !important;
div{

div {
width: 100%;
}

div:first-of-type {
order: 2;
}
order: 2;
}
}

}

0 comments on commit 9d822e2

Please sign in to comment.