Advertisement
Guest User

Untitled

a guest
Sep 28th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. <div class="col-sm-4 col-sm-offset-4">
  2. <div class="well">
  3. <h2>Wordt koerier</h2>
  4. <div class="form-group">
  5. <input
  6. type="text"
  7. class="form-control"
  8. placeholder="IBAN"
  9. autocomplete="off"
  10. @keyup.enter="submit"
  11. >
  12. </div>
  13. <div class="form-group">
  14. <input
  15. type="text"
  16. class="form-control"
  17. placeholder="Geboorte Datum"
  18. onfocus="(this.type='date')"
  19. autocomplete="off"
  20. @keyup.enter="submit"
  21. >
  22. </div>
  23. <div class="form-group">
  24. <input id="box1" type="checkbox" />
  25. <label for="box1">Auto</label><i class="fa fa-car" aria-hidden="true"></i><br>
  26.  
  27. <input id="box2" type="checkbox" />
  28. <label for="box2">Fiets</label><i class="fa fa-bicycle" aria-hidden="true"></i><br>
  29.  
  30. <input id="box3" type="checkbox" />
  31. <label for="box3">Brommer/Scooter</label><i class="fa fa-motorcycle" aria-hidden="true"></i><br>
  32.  
  33. <input id="box4" type="checkbox" />
  34. <label for="box4">Lopen</label><i class="fa fa-male" aria-hidden="true"></i><br>
  35. </div>
  36.  
  37. <!-- <button class="btn btn-block" @click="submit()">Log In</button> -->
  38. <button class="btn btn-block" @click="submit()" v-bind:class="{ 'btn-loading disabled': loading }"><i class="fa fa-spin fa-spinner"></i><span>Verstuur</span></button>
  39. <br>
  40. </div>
  41. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement