⚠️ Repository Archived⚠️ [2022-08-16]According to the DOE, for the 2022-2023 school year, the health screening will not be required.
- Daily Health Screener:
- No longer required to enter school buildings
This means that this repository will be archived.
A HTML copy of the "success" page upon completing a health screening. This is to be used for demonstration purposes only.
Linux systems such as Ubuntu do not have the required fonts to make the health screening page load with the default font of Arial. In order to install them, run the command below (Debian/Ubuntu/any other distro using apt):
sudo apt install ttf-mscorefonts-installer
sudo fc-cache -f
This installer will prompt to accept the Microsoft EULA, so please accept it.
The assets folder is required to make the page.html
file work. However, you can download the repo for offline use, as
everything is 100% dynamic and controlled by parameters. You can download a copy of the repository by
clicking this link.
type
: This is the type of screening being loaded. Must be one ofguest
,employee
, orstudent
.name
: The full name of the person the screening is for. Spaces must either be URL-encoded or replaced with+
.date
: The date the screening was completed. Must be in the format<weekday>, <month name> <D/DD>, <YYYY>, <hour-12>:<MM> <AM/PM>
. Spaces must either be URL-encoded or replaced with+
. Example format:Wednesday, December 8, 2021 7:15 AM
A full request to this URL might look like this:
file://C:\Users\User\Desktop\Success-Screening-Clone-main\page.html?type=guest&name=John+Doe&date=Wednesday,+December+8,+2021+7:15+AM
Note: Replace C:\Users\User\Desktop\Success-Screening-Clone-main\page.html
with wherever you saved the folder from
the download above. On MacOS/Linux, the path might be /Users/User/Desktop/Success-Screening-Clone-main/page.html
.