I have this form in asp MVC 3
<form action="/account/changeemail" id="form_changeemail" method="post">
<%=Html.AntiForgeryToken()%>
<input type="email" name="email" id="email" class="required email" />
<button class="green button" type="submit" id="changeemail">Change</button>
</form>
And this action
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult ChangeEmail(string email)
{
}
And on Safari on IOS this always gives me
A required anti-forgery token was not supplied or was invalid
This is the user agent of the browser
Mozilla/5.0 (iPhone; CPU iPhone OS 7_0_3 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11B511 Safari/9537.53
I've looked at the cookies, and the one for the request validation token is set to 1st of January 2001.
Any ideas? Thanks