client/app/books/add_modal.html
author rougeronj
Thu, 02 Apr 2015 13:11:12 +0200
changeset 55 10fd23382e76
parent 53 dac1df90b49e
child 68 b209b49c99fb
permissions -rw-r--r--
split ammico $resource to a new .Service

<div class="modal-header ng-scope">
	<h3 class="modal-title">Ajouter un nouveau Book</h3>
</div>

<div class="modal-body ng-scope">
	<input type="text" class="form-control" ng-model='title' placeholder="Titre"></input>
</div>

<div class="modal-footer ng-scope">
	<button ng-click="cancel()" class="btn btn-warning">Cancel</button>
	<button ng-click="add()" class="btn btn-primary">OK</button>
</div>