This shows when the user logs in for the first time and doesn't show again
we can obviously add more stuff but that is just my rough idea of what to include for the data privacy blurb. Also we want to include some info about onboarding.
Note: This uses localStorage which is a type of web storage that allows JavaScript sites and apps to store and access data right in the browser with no expiration date. Data stored in localStorage is saved across browser sessions. This means that even after closing and reopening the browser, the data remains available.
Therefore, for testing purposes you will have to go to the console and type this
localStorage.removeItem('privacyAccepted');
This shows when the user logs in for the first time and doesn't show again
we can obviously add more stuff but that is just my rough idea of what to include for the data privacy blurb. Also we want to include some info about onboarding.
Note: This uses localStorage which is a type of web storage that allows JavaScript sites and apps to store and access data right in the browser with no expiration date. Data stored in localStorage is saved across browser sessions. This means that even after closing and reopening the browser, the data remains available.
Therefore, for testing purposes you will have to go to the console and type this
localStorage.removeItem('privacyAccepted');
close #42