client/app/books/add_modal.html
author rougeronj
Thu, 02 Apr 2015 12:02:07 +0200
changeset 53 dac1df90b49e
child 68 b209b49c99fb
permissions -rw-r--r--
fucntion and button to add a book

<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>