I have a form that contains the input of the type of email that is required. I would like to have my own check in this input field so that I can display the error message in different languages. However, the input field is currently being evaluated using HTML5 validation.
The code is as follows:
<input [(ngModel)]="user.email" type="email" class="form-control" id="email" name="email" required placeholder="{{'Email'|translate}}">
Is it possible to disable this so that I can perform my own check?
Verification code not yet written.
source
share