I want to set an error on an Ecto.Changeset that is not specific to a field.
In my case, I have a login form and I want to set an error saying that either the email or the password is invalid. However I still want to highlight the email or password field when they are empty.
In Rails you can do that by adding an entry to errors[:base]. Is there an equivalent in Ecto ?