|
91
|
1 |
<div class="modal-header ng-scope"> |
|
96
|
2 |
<h3 class="modal-title">Ajouter un nouveau Book</h3> |
|
91
|
3 |
</div> |
|
|
4 |
|
|
|
5 |
<form ng-submit="add()" novalidate> |
|
96
|
6 |
<div class="modal-body ng-scope"> |
|
|
7 |
<input type="text" class="form-control" ng-model='title' placeholder="Titre"></input> |
|
|
8 |
</div> |
|
|
9 |
|
|
|
10 |
<div class="modal-footer ng-scope"> |
|
|
11 |
<button type="button" ng-click="cancel()" class="btn btn-warning">Cancel</button> |
|
|
12 |
<button type="submit" class="btn btn-primary">Create</button> |
|
|
13 |
</div> |
|
91
|
14 |
</form> |