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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
53
dac1df90b49e fucntion and button to add a book
rougeronj
parents:
diff changeset
     1
<div class="modal-header ng-scope">
dac1df90b49e fucntion and button to add a book
rougeronj
parents:
diff changeset
     2
	<h3 class="modal-title">Ajouter un nouveau Book</h3>
dac1df90b49e fucntion and button to add a book
rougeronj
parents:
diff changeset
     3
</div>
dac1df90b49e fucntion and button to add a book
rougeronj
parents:
diff changeset
     4
dac1df90b49e fucntion and button to add a book
rougeronj
parents:
diff changeset
     5
<div class="modal-body ng-scope">
dac1df90b49e fucntion and button to add a book
rougeronj
parents:
diff changeset
     6
	<input type="text" class="form-control" ng-model='title' placeholder="Titre"></input>
dac1df90b49e fucntion and button to add a book
rougeronj
parents:
diff changeset
     7
</div>
dac1df90b49e fucntion and button to add a book
rougeronj
parents:
diff changeset
     8
dac1df90b49e fucntion and button to add a book
rougeronj
parents:
diff changeset
     9
<div class="modal-footer ng-scope">
dac1df90b49e fucntion and button to add a book
rougeronj
parents:
diff changeset
    10
	<button ng-click="cancel()" class="btn btn-warning">Cancel</button>
dac1df90b49e fucntion and button to add a book
rougeronj
parents:
diff changeset
    11
	<button ng-click="add()" class="btn btn-primary">OK</button>
dac1df90b49e fucntion and button to add a book
rougeronj
parents:
diff changeset
    12
</div>