17 lines
450 B
HTML
17 lines
450 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Add Bill | Vanikam</title>
|
|
</head>
|
|
<body>
|
|
Token Refreshed
|
|
<form action="/billing/bill/add" method="post">
|
|
<label>
|
|
Store ID <input type="text" name="store_id" id="store_id"
|
|
/></label>
|
|
<button type="submit">Add Bill</button>
|
|
</form>
|
|
</body>
|
|
</html>
|