vanikam/web_ui/templates/billing/update_bill.html

40 lines
987 B
HTML
Raw Normal View History

2025-01-10 21:29:51 +05:30
<!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>