Interactive Demo
↓ Next section
Sample source
<form novalidate>
<label for="username">Username</label>
<input type="text" id="username"
name="username" ng-model="user.username"
validation-max-length="10"
validation-min-length="5"
validation-no-space="true"
validation-field-required="true"
validation-no-special-chars="true"
/>
...
</form>
↑ Back to top