Advertisement
Guest User

Untitled

a guest
Aug 15th, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <form>
  2. <ol>
  3. <li class="inputQuestion" v-bind:class="{ 'error': $v.user.username.$error }">
  4. <label>Username:</label>
  5. <input v-model.trim="user.username" @input="$v.user.username.$touch()" />
  6. </li>
  7. <li class="inputQuestion" v-bind:class="{ 'error': $v.user.password.$error }">
  8. <label>Password:</label>
  9. <input v-model.trim="user.password" @input="$v.user.password.$touch()" />
  10. </li>
  11.  
  12. <li class="submission">
  13. <button @click.prevent="submitForm" :disabled="$v.form.valid()">Sign In</button>
  14. </li>
  15. </ol>
  16. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement