diff --git a/app/assets/javascripts/loginAlert.js b/app/assets/javascripts/loginAlert.js index 1f3281788..84c2ee6a8 100644 --- a/app/assets/javascripts/loginAlert.js +++ b/app/assets/javascripts/loginAlert.js @@ -1,7 +1,7 @@ (function (window) { // Set the target date (10 days before March 15th, 2024) - const targetDate = new Date("April 9, 2024 00:00:00").getTime(); + const targetDate = new Date("April 16, 2024 00:00:00").getTime(); // Function to update the countdown display function updateCountdown() { diff --git a/app/templates/views/signin.html b/app/templates/views/signin.html index 1b8201275..e3e478a91 100644 --- a/app/templates/views/signin.html +++ b/app/templates/views/signin.html @@ -15,7 +15,7 @@
-

Login.gov is required by April 9, 2024

+

Login.gov is required by April 16, 2024

You have left to use Login.gov to sign in

@@ -51,7 +51,7 @@ {% endcall %}
-

Notify.gov is changing the sign-in experience to Login.gov effective
April 9, 2024

+

Notify.gov is changing the sign-in experience to Login.gov effective
April 16, 2024

Why are we doing this?

  • Enhanced security: Login.gov is really secure and trustworthy
  • @@ -61,7 +61,7 @@

    What do I need to do?

    • If you have a Login.gov account, start using it to sign in to Notify today.
    • -
    • If you don’t have a Login.gov account, you must create one by April 9, 2024 to continue to access Notify.
    • +
    • If you don’t have a Login.gov account, you must create one by April 16, 2024 to continue to access Notify.
    Create Login.gov account diff --git a/tests/javascripts/loginAlert.test.js b/tests/javascripts/loginAlert.test.js index 895aa3647..085434b6a 100644 --- a/tests/javascripts/loginAlert.test.js +++ b/tests/javascripts/loginAlert.test.js @@ -4,7 +4,7 @@ beforeAll(() => { document.body.innerHTML = `
    -

    Login.gov is required by April 9, 2024

    +

    Login.gov is required by April 16, 2024

    You have left to use Login.gov to sign in

    @@ -17,7 +17,7 @@ beforeAll(() => { }); jest.useFakeTimers(); -const targetDate = new Date("April 9, 2024 00:00:00"); // Reference point +const targetDate = new Date("April 16, 2024 00:00:00"); // Reference point test('Hides the countdown if more than 10 days away', () => { jest.setSystemTime(targetDate.getTime() - 12 * 24 * 60 * 60 * 1000); // 12 days before