-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbill.html
More file actions
158 lines (75 loc) · 1.81 KB
/
Copy pathbill.html
File metadata and controls
158 lines (75 loc) · 1.81 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
<title>bill</title>
<head>
<style>
body{
margin: 0;
padding: 0;
background: url(picture3.jpg);
background-size: cover;
font-family: sans-serif;
}
h1{
margin: 0;
text-align: center;
font-size: 30px;
color: black;
padding-top: 25px;
padding-bottom: 20px;
}
.loginbox p{
margin: 10;
padding: 10;
font-weight: bold;
text-align: center;
}
.loginbox input[type="number"]
{
border: none;
border-bottom: 1px solid #fff;
background: transparent;
outline: none;
height: 40px;
color: black;
font-size: 16px;
}
.loginbox a:hover
{
color: #ffc107;
}
.loginbox input[type="submit"]
{
border: none;
outline: none;
height: 40px;
background: #fb2525;
color: #fff;
font-size: 18px;
border-radius: 20px;
align: center;
}
.loginbox input[type="submit"]:hover
{
cursor: pointer;
background: #ffc107;
color: #000;
align: center;
}
</style>
</head>
<body>
<div class="loginbox">
<h1>Bill</h1>
<form action="add_bill.php" method="post">
<p>Date <input type="date" name="b_date" placeholder="Enter Date"></p>
<p>Customer_ID <input type="number" name="cust_id" placeholder="Enter customer id"></p>
<p>Inventory_ID <input type="number" name="inv_id" placeholder="Enter inventory id"></p>
<p>Price <input type="number" name="price" placeholder="Enter price"></p>
<p>Quantity <input type="number" name="qty" placeholder="Enter Quantity"></p>
<p>Employee_ID <input type="number" name="emp_id" placeholder="Enter employee id"></p>
<p> <input type="submit" align="middle" value="Submit"></p>
</form>
</div>
</body>
</html>