From 6b4e72f73539edcf9a0a97d37c2be269c64661bb Mon Sep 17 00:00:00 2001 From: Natalia Luzuriaga Date: Thu, 4 Sep 2025 13:56:20 -0400 Subject: [PATCH] Changed h4 to h3 for descending headers Signed-off-by: Natalia Luzuriaga --- index.html | 16 ++++++++-------- js/exemptionQuizHandler.js | 8 ++++---- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/index.html b/index.html index 904576e..eb21ea7 100644 --- a/index.html +++ b/index.html @@ -53,9 +53,9 @@

Identify your project's classification

-

+

My project is considered: -

+
@@ -103,10 +103,10 @@

Is my project exempted from the SHARE IT Act?

-

+

Answer the series of questions below to determine if your project falls under the exemption categories according to the SHARE IT Act. -

+
@@ -189,10 +189,10 @@

Is my project exempted from M-16-21?

-

+

Answer the series of questions below to determine if your project falls under the exemption categories according to M-16-21 Act. -

+
@@ -266,9 +266,9 @@

2

Auto Generate Fields

-

Enter your repository's +

Enter your repository's GitHub URL in order to automatically pre-fill some of the - fields in this form

+ fields in this form

This currently only works on public repositories

diff --git a/js/exemptionQuizHandler.js b/js/exemptionQuizHandler.js index bbcb619..9e8d593 100644 --- a/js/exemptionQuizHandler.js +++ b/js/exemptionQuizHandler.js @@ -28,7 +28,7 @@ function determineResults(checkedValues, legislationName) { // Project is not exempt - simple quiz if (legislationName == "start") { if (checkedValues[0] !== "exempt") { - text = `

Your project is qualified for sharing and reuse according to the SHARE IT Act and M-16-21.

+ text = `

Your project is qualified for sharing and reuse according to the SHARE IT Act and M-16-21.

We've marked this in the form below for you as: ${checkedValues[0]}

` } } @@ -37,11 +37,11 @@ function determineResults(checkedValues, legislationName) { else if ((checkedValues.length === 1 && checkedValues[0].includes("none")) || checkedValues.length === 0) { if (legislationName === "share-it-act") { - text = `

Your project is:
NOT EXEMPTED

+ text = `

Your project is:
NOT EXEMPTED

Please complete Part 1c to determine additional project exemptions.

`; } else { - text = `

Your project is:
NOT EXEMPTED

+ text = `

Your project is:
NOT EXEMPTED

If your project is NOT exempted from both M-16-21 AND the SHARE IT Act, please mark the following on the form:

If your repository is public, mark usageType as openSource.

If your repository is private, mark usageType as governmentWideReuse.

`; @@ -50,7 +50,7 @@ function determineResults(checkedValues, legislationName) { // Project is exempted else { const selections = checkedValues.join(", "); - text = `

Your project is: EXEMPTED

+ text = `

Your project is: EXEMPTED

We've marked this in the form below for you as: ${selections}

Be sure to include a 1–2 sentence justification in the exemptionText field to support the exemption determination.

`; }