angular-8-registration-login-example
angular-8-registration-login-example copied to clipboard
Security issue with saving in localStorage
Since you store this in local storage with a json object
You can easily push to the localstorage via the browsers included Javascript console:
by using: localStorage.setItem("currentUser": "object")
This might be something to look into. ^^