30 lines
1.4 KiB
Plaintext
30 lines
1.4 KiB
Plaintext
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Document</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<form action="/api/live/inventory/add" method="post">
|
||
|
<label for="name">name</label>
|
||
|
<input type="text" name="name" placeholder="Name" id="name" required>
|
||
|
<label for="desc">desc</label>
|
||
|
<input type="text" name="desc" placeholder="Description" id="desc" required>
|
||
|
<label for="status">status</label>
|
||
|
<input type="text" name="status" placeholder="Status" id="status" required>
|
||
|
<label for="category">category</label>
|
||
|
<input type="text" name="category" placeholder="Category" id="category" required>
|
||
|
<label for="amount">amount</label>
|
||
|
<input type="text" name="amount" placeholder="Amount" id="amount" required>
|
||
|
<label for="location">location</label>
|
||
|
<input type="text" name="location" placeholder="Location" id="location" required>
|
||
|
<label for="orderid">order id</label>
|
||
|
<input type="text" name="orderid" placeholder="Order id" id="orderid" required>
|
||
|
<label for="notes">notes</label>
|
||
|
<input type="text" name="notes" placeholder="Notes" id="notes" required>
|
||
|
<input type="submit" value="Publish">
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|