lead.html 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <ion-modal-view>
  2. <ion-header-bar class="bar bar-positive">
  3. <h1 class="title">Iniciativa</h1>
  4. <div class="buttons">
  5. <button class="button button-clear ion-checkmark-round" style="font-size:22px !important; padding-left: 5px;" type="submit" form="lead-form" ng-disabled="!lead.name"></button>
  6. </div>
  7. </ion-header-bar>
  8. <ion-content>
  9. <form id="lead-form" ng-submit="save()">
  10. <div class="list">
  11. <label class="item item-input">
  12. <input type="text" autofocus="autofocus" placeholder="Asunto" ng-model="lead.name">
  13. </label>
  14. <label class="item item-input">
  15. <input type="text" placeholder="Contacto" ng-model="lead.contact_name">
  16. </label>
  17. <label class="item item-input">
  18. <input type="text" placeholder="Dirección" ng-model="lead.street">
  19. </label>
  20. <label class="item item-input">
  21. <input type="text" placeholder="Dirección" ng-model="lead.street2">
  22. </label>
  23. <label class="item item-input">
  24. <input type="tel" placeholder="Teléfono" ng-model="lead.phone">
  25. </label>
  26. <label class="item item-input">
  27. <input type="tel" placeholder="Celular" ng-model="lead.mobile">
  28. </label>
  29. <label class="item item-input">
  30. <input type="tel" placeholder="Fax" ng-model="lead.fax">
  31. </label>
  32. <label class="item item-input">
  33. <textarea placeholder="Nota" rows="8" cols="40" ng-model="lead.description"></textarea>
  34. </label>
  35. </div>
  36. </form>
  37. </ion-content>
  38. </ion-modal-view>