Skip to content

Instantly share code, notes, and snippets.

@sulco
Last active September 3, 2015 12:34
Show Gist options
  • Save sulco/20c58269529bab434b12 to your computer and use it in GitHub Desktop.
Save sulco/20c58269529bab434b12 to your computer and use it in GitHub Desktop.
form(name='registration')
.form-group
label(for='username') Username
input#username.form-control(type='text', required='', ng-minlength='3',
name='username', ng-model='user.username')
ng-messages(for='registration.username.$error',
ng-show='registration.username.$dirty && registration.username.$invalid', role='alert')
ng-message(when='required') Username is required
ng-message(when='minlength') Username must be at least 3 characters long
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment