Created
January 2, 2015 14:19
-
-
Save wcadap/561b053f88bc4b1e3875 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="modal-header"> | |
| <button type="button" class="close" ng-click="cancel()" aria-hidden="true">×</button> | |
| <h3 class="modal-title">Delete {{contact.firstName}} {{contact.lastName}}</h3> | |
| </div> | |
| <div class="modal-body"> | |
| <div class="container"> | |
| <form class="form-horizontal" role="form" id="contactForm" name="contactForm"> | |
| <!--<div class="col-sx-12 col-sm-8 col-md-6 col-lg-6">--> | |
| <div class="form-group"> | |
| <label class="control-label">First Name</label> | |
| <div class="controls"> | |
| <input type="text" data-ng-model="contact.firstName" class="form-control" ng-disabled="true"> | |
| </div> | |
| </div> | |
| <div class="form-group"> | |
| <label class="control-label">Last Name</label> | |
| <div class="controls"> | |
| <input type="text" data-ng-model="contact.lastName" class="form-control" ng-disabled="true"> | |
| </div> | |
| </div> | |
| <div class="form-group"> | |
| <label class="control-label">Email</label> | |
| <div class="controls"> | |
| <input type="text" data-ng-model="contact.email" class="form-control" ng-disabled="true"> | |
| </div> | |
| </div> | |
| <div class="form-group"> | |
| <label class="control-label">Mobile #</label> | |
| <div class="controls"> | |
| <input type="text" data-ng-model="contact.mobile" class="form-control" ng-disabled="true"> | |
| </div> | |
| </div> | |
| <!--</div>--> | |
| </form> | |
| </div> | |
| </div> | |
| <div class="modal-footer"> | |
| <div class="row"> | |
| <div class="col-md-6 pull-left"> | |
| <div data-ng-show="error" class="text-danger"> | |
| <strong data-ng-bind="error"></strong> | |
| </div> | |
| </div> | |
| <div class="col-md-6 pull-right"> | |
| <button class="btn btn-warning" ng-click="cancel()"><i class="glyphicon glyphicon-thumbs-down"></i> Cancel</button> | |
| <button class="btn btn-danger" ng-click="ok(contact)"><i class="glyphicon glyphicon-trash"></i> Delete</button> | |
| </div> | |
| </div> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment