1234567891011121314151617181920212223242526272829303132333435363738 |
- <ion-modal-view>
- <ion-header-bar class="bar bar-positive">
- <h1 class="title">Iniciativa</h1>
- <div class="buttons">
- <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>
- </div>
- </ion-header-bar>
- <ion-content>
- <form id="lead-form" ng-submit="save()">
- <div class="list">
- <label class="item item-input">
- <input type="text" autofocus="autofocus" placeholder="Asunto" ng-model="lead.name">
- </label>
- <label class="item item-input">
- <input type="text" placeholder="Contacto" ng-model="lead.contact_name">
- </label>
- <label class="item item-input">
- <input type="text" placeholder="Dirección" ng-model="lead.street">
- </label>
- <label class="item item-input">
- <input type="text" placeholder="Dirección" ng-model="lead.street2">
- </label>
- <label class="item item-input">
- <input type="tel" placeholder="Teléfono" ng-model="lead.phone">
- </label>
- <label class="item item-input">
- <input type="tel" placeholder="Celular" ng-model="lead.mobile">
- </label>
- <label class="item item-input">
- <input type="tel" placeholder="Fax" ng-model="lead.fax">
- </label>
- <label class="item item-input">
- <textarea placeholder="Nota" rows="8" cols="40" ng-model="lead.description"></textarea>
- </label>
- </div>
- </form>
- </ion-content>
- </ion-modal-view>
|