I have following HTML:
<form ng-submit="submitForm()" method="POST">
<div class="formRow"><input type="email" placeholder="Email" ng-model="form.emailId" name="email" required></div>
<button type="submit" ngclick="Submit">Signin</button>
It is showing a red border by default. Why?
When I inspect the HTML in Firefox I see this:
<input type="email" required="" name="email" ng-model="form.emailId" placeholder="Email" class="ng-pristine ng-invalid ng-invalid-required ng-valid-email">
Any idea?