In my AngularJS template I have the following login input field section. It is currently autopopulating the input field with rather than the email address address, it is showing up as in the email field (rather than [email protected] etc..)
[object Object]
my template/view
<input ng-model="form.email" type="email" name="email" placeholder="Email" autocomplete="off">
The ng-model using the variable form.email (although I cannot see where exactly that is coming from yet) - what could be wrong?
form.emailhas other properties and is not just a string.