department-of-veterans-affairs/vets-website

View on GitHub
src/applications/fry-dea/components/PreSubmitInfo.jsx

Summary

Maintainability
A
40 mins
Test Coverage
import React from 'react';

export default {
  required: true,
  notice: (
    <div>
      <strong>Note:</strong> According to federal law, there are criminal
      penalties, including a fine and/or imprisonment for up to 5 years, for
      withholding information or for providing incorrect information. (See 18
      U.S.C. 1001)
    </div>
  ),
  field: 'privacyAgreementAccepted',
  label: (
    <span>
      I have read and accept the{' '}
      <a
        aria-label="Privacy policy, will open in new tab"
        target="_blank"
        href="/privacy-policy/"
      >
        privacy policy
      </a>
      . I certify that all statements in my application are true and correct to
      the best of my knowledge and belief.
    </span>
  ),
  error: 'You must accept the privacy policy before continuing.',
};