-
Notifications
You must be signed in to change notification settings - Fork 0
/
addProdAmount.html
32 lines (30 loc) · 1.72 KB
/
addProdAmount.html
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
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<link rel="stylesheet" href="addProdAmount.css">
<script src="https://www.gstatic.com/firebasejs/8.0.2/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.0.2/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.0.2/firebase-database.js"></script>
<script src="addProdAmount.js"></script>
<div id = "form">
<h1 align="center" style="margin-bottom: 10px;">Add New Product in Inventory</h1>
<hr style="margin-bottom: 20px;">
<form id="cusform">
<label for="id">Prod-ID</label><br>
<input id="id" type="number" placeholder="Enter Unique Four Digit Prod-ID [Ex: 1021]"><br>
<label for="amount">Amount of Unit Buy</label><br>
<input id="amount" type="number" placeholder="Enter Unit Amount [Ex: For 12 Liter = 12]"><br>
<label for="buyCost">Buy Cost [Per Unit]</label><br>
<input id="buyCost" type="number" placeholder="Enter Buy Cost (Per Unit) [Ex: For 90 tk per Liter = 90]"><br>
<label for="sellCost">Sell Cost [Per Unit]</label><br>
<input id="sellCost" type="number" placeholder="Enter Sell Cost (Per Unit) [Ex: For 110 tk per Liter = 110]"><br>
<label for="mobNo">Contact Number of Whole-Seller</label><br>
<input id="mobNo" type="text" placeholder="Enter 11-digit Phone Number [Ex: 018XXXXXXXX]"><br>
<button id="addbutton" type="button" onclick="tap()">Add Prod.</button>
</form>
</div>
<div class="loader" id="classId"></div>
</body>
</html>