-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsales_view.html
35 lines (34 loc) · 1.08 KB
/
sales_view.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
33
34
35
<!DOCTYPE html>
<html>
<head>
<title>Sales View</title>
<link rel="stylesheet" href="/static/sample_css.css" >
</head>
<body>
<header>
<h1>Namma Kadai</h1>
</header>
</br></br></br></br>
<div class="login-container">
<h2>Sales:</h2>
<form action="/salessubmit" method="post">
<label for="itemname">Item Name:</label>
<input type="text" id="itemname" name="itemname" required>
<label for="item_id">Item Id:</label>
<input type="number" id="item_id" name="item_id" required>
<label for="price">Price:</label>
<input type="number" id="price" name="price" required>
<label for="quantity">Quantity:</label>
<input type="number" id="quantity" name="quantity" required>
<label for="amount">Amount:</label>
<input type="number" id="amount" name="amount" required>
<button type="submit" class="button">Update Sales</button>
</form>
</div>
<footer>
<p>Email us:[email protected]</p>
<p>Our Shop:Coimbatore,India</p>
<p>Contact us:9070086000</p>
</footer>
</body>
</html>