I make this question because in a client server application the server sends the html with different token hidden in form for each request. This token is built on the server by a secret key.
But Angular 2 all forms are already on the client. For a form contain a token that he needs a secret key is in the client, and that to me is already one security breach.
So I ask the question, if it makes sense to use csrf token in Angular 2? If the answer is yes, how could this be done?