forked from jay13patel/LocalKabadi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform3.php
More file actions
40 lines (35 loc) · 1.13 KB
/
form3.php
File metadata and controls
40 lines (35 loc) · 1.13 KB
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
<fieldset >
<br>
<div class="table-responsive">
<table class="table table-bordered">
<thead class="">
<tr>
<th>Material</th>
<th>Rate</th>
<th>Quantity(per kg or pcs)</th>
<th>Total</th>
</tr>
</thead>
<tbody style="text-align:left;" id="mat_table">
</tbody>
<tr>
<td colspan=2>Total</td>
<td id="qty_total"></td>
<td id="net_total"></td>
</tr>
</table>
</div>
<div class="form-group">
<button id="add" type="button" style="background: #fff; border: 1px solid #118C4E; color: #118C4E; ">
<i class="fas fa-plus-square fa-large " >ADD</i>
</button>
<button id="remove" type="button" class="right" style="background: #fff; border: 1px solid #f35b3f; color: #f35b3f; ">
<i class="fas fa-minus-square fa-large " >Remove</i>
</button>
</div>
<input style="display:none;" id="add_in" value=1 name="add_in"/>
<div class="f1-buttons">
<button type="button" class="btn btn-previous" >Previous</button>
<button type="button" class="btn btn-next" onclick="enable_sub()">Next</button>
</div>
</fieldset>