department-of-veterans-affairs/vets-website

View on GitHub
src/platform/user/authentication/components/LoginNote.js

Summary

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

export default ({ isV2 }) => (
  <div className="row" id="loginNote">
    {!isV2 && (
      <p className="vads-u-font-size--base vads-u-margin-top--3 vads-u-padding-x--1">
        <strong>Note:</strong> We're moving to a simpler and more modern sign-in
        experience. We'll remove the My HealtheVet option after{' '}
        <strong>January 31, 2025,</strong> and the DS Logon option after{' '}
        <strong>September 30, 2025.</strong>
      </p>
    )}
    <a
      href="https://www.va.gov/resources/creating-an-account-for-vagov"
      className="vads-u-padding-x--1"
      target="_blank"
      aria-label="Creating a Login.gov or ID.me account. (Opens in a new window)"
      rel="noreferrer"
    >
      Learn more about creating a Login.gov or ID.me account
    </a>
  </div>
);