Healthcare Career Insight Tool
This project was a case assigned to us by Fontys and the Catharina hospital in Eindhoven, where we, a team of 3 Fontys students, were tasked by the Catharina Hospital to create a prototype application with the goal of helping their employees gain a better understanding of their career perspectives and growth.
The prototype had several requirements:
- Mobile resolution, the target audience has access to this device at all times
- Dutch language, the main language of the hospital is Dutch
- Guest and User view, with the guest view not requiring a user account
- Career page, where available healthcare functions and courses could be viewed
- Favourites, where healthcare functions and courses of interest can be saved
- Selftest, where one can do a test and receive recommendations
With these in mind, I created a design within the prototyping software Adobe XD across several iterations, based on feedback from the team and the stakeholders from the Catharina Hospital. Once the entire interactive flow had been mapped out in Adobe XD, the final prototype was coded in HTML, CSS, and JavaScript. I was responsible for large parts of the code as well.

One example of this is the log in screen, where I made heavy use of flexbox to position all the elements, as well as the before pseudo-element to apply a background. The resulting code is:
A second example is the search page, which is linked to the search bar on the homepage as well. The latter stores the searched keyword in session storage before applying it as value of the input. A for loop iterates through the length of all .label elements and compares the value of H2 to the search term in order to filter them. In addition to this, there are buttons that filter by type as well. They work in a similar way, the difference being that compare the id of the label to the value of a variable called currentFilter. The resulting code is:
For the rest of the code, see the repository on GitHub: https://github.com/Nickvd96/CatharinaHospitalPossibilities/blob/main/js/zoeken.js