Just beginning my journey in web development. Currently utilizing asp.net Web API and Angular with token authentication. Every time a user logs in, I set the token in a cookie and send it with each request. Everything has been running smoothly so far, but I encountered an issue when a user logged into two different accounts on separate tabs within the same browser. The cookie ended up being set to the last logged-in account, causing the tokens for both accounts to be the same. How can I differentiate between them?