-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdigits-keyboard.php
72 lines (71 loc) · 2.69 KB
/
digits-keyboard.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<div class="row">
<div class="col-xs-12 btn-group btn-group-justified" role="group">
<div class="btn-group" role="group">
<button type="button" class="btn btn-default bill-font" id="btn-price-7">7</button>
</div>
<div class="btn-group" role="group">
<button type="button" class="btn btn-default bill-font" id="btn-price-8">8</button>
</div>
<div class="btn-group" role="group">
<button type="button" class="btn btn-default bill-font" id="btn-price-9">9</button>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12 btn-group btn-group-justified" role="group">
<div class="btn-group" role="group">
<button type="button" class="btn btn-default bill-font" id="btn-price-4">4</button>
</div>
<div class="btn-group" role="group">
<button type="button" class="btn btn-default bill-font" id="btn-price-5">5</button>
</div>
<div class="btn-group" role="group">
<button type="button" class="btn btn-default bill-font" id="btn-price-6">6</button>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12 btn-group btn-group-justified" role="group">
<div class="btn-group" role="group">
<button type="button" class="btn btn-default bill-font" id="btn-price-1">1</button>
</div>
<div class="btn-group" role="group">
<button type="button" class="btn btn-default bill-font" id="btn-price-2">2</button>
</div>
<div class="btn-group" role="group">
<button type="button" class="btn btn-default bill-font" id="btn-price-3">3</button>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12 btn-group btn-group-justified" role="group">
<div class="btn-group" role="group">
<button type="button" class="btn btn-default bill-font" id="btn-price-0">0</button>
</div>
<div class="btn-group" role="group">
<button type="button" class="btn btn-default bill-font" id="btn-price-dot">,</button>
</div>
<div class="btn-group" role="group">
</div>
</div>
</div>
<div class="row">
<form class="col-xs-12">
<div class="form-group">
<label for="price" >Prix : </label>
<div class="input-group">
<span class="input-group-btn">
<button class="btn bg-warning text-warning" type="button" id="btn-clear-price"><i class="fa fa-eraser"></i></button>
</span>
<input type="text" class="form-control bill-font text-right" id="txt-price" placeholder="0.00" readonly>
<span class="input-group-addon" id="sizing-addon1">€</span>
<span class="input-group-btn">
<button class="btn btn-primary" type="button" id="btn-add-price" disabled="disabled">
<!--DBG<span class="glyphicon glyphicon-plus"></span>--><i class="fa fa-cart-plus"></i>
<span class="hidden-xs"> Ajouter</span>
</button>
</span>
</div>
</div>
</form>
</div>