40 lines
987 B
HTML
40 lines
987 B
HTML
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
<title>Update Bill | Vanikam</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
Token Refreshed
|
||
|
<form action="/billing/bill/add" method="post">
|
||
|
<!-- price -->
|
||
|
|
||
|
<label for="total_price_unit">
|
||
|
Total price unit
|
||
|
<input type="text" name="total_price_unit" id="total_price_unit" />
|
||
|
</label>
|
||
|
|
||
|
<label for="total_price_minor_number">
|
||
|
Total price minor number
|
||
|
<input
|
||
|
type="number"
|
||
|
name="total_price_minor_number"
|
||
|
id="total_price_minor_number"
|
||
|
/>
|
||
|
</label>
|
||
|
|
||
|
<label for="total_price_major_number">
|
||
|
Total price major number
|
||
|
<input
|
||
|
type="number"
|
||
|
name="total_price_major_number"
|
||
|
id="total_price_major_number"
|
||
|
/>
|
||
|
</label>
|
||
|
|
||
|
<button type="submit">Update Bill</button>
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|