-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCreate Customer.htm
101 lines (89 loc) · 3.14 KB
/
Create Customer.htm
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body{
background-image: url("https://media.istockphoto.com/photos/shopping-cart-view-in-supermarket-aisle-with-product-shelves-abstract-picture-id838816102?k=6&m=838816102&s=612x612&w=0&h=uPCuplmaLnfDesOl422jsccqTHwDvnAh5L0ydxa3HRA=");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
.div1{
height: 70px;
border: solid;
background-color: dimgrey;
}
.div3{
margin-top: 15px;
padding: 5px;
border: solid rgba(93, 93, 93, 0.986);;
width: 600px;
height: 400px;
border-radius: 10px;
background-color: rgba(190, 190, 190, 0.801);
}
input{
border-radius: 5px;
margin: 20px;
width: 300px;
height: 40px;
}
.btn1{
border-radius: 500px;
width: 100px;
height:40px ;
border-color: rgb(64, 114, 114);
color: darkslategrey;
}
.div8{
border-bottom:5px gray groove;
position: relative;
width: 600px;
z-index: 8;
height: 29px;
margin-top: 70px;
}
.btn4{
border: solid darkslategray 3px;
border-bottom: none;
margin-left: 30px;
margin-right: 30px;
height: 45px;
width: 100px;
margin-top: -50px;
}
.btn4:hover{
background-color: lightslategray;
}
.btn4:first-child{
background-color: dimgray;
}
</style>
</head>
<body>
<div class="div1"><center><h1>Create Customer</h1></center> </div>
<center>
<div class="div3">
<h2>Customer Detailes</h2>
<form action="bill" method="post" >
<label>Phono:</label><input type="text" name="custid" id="custid" placeholder="Enter Customer phno" required ><br>
<label>Name:</label><input type="text" name="custname" id="custname" placeholder="Enter Customer name" required ><br>
<label>Email:</label><input type="text" name="cusmail" id="cutname" placeholder="Enter Customer Email" required ><br>
<button type="submit" class="btn1">Create</button>
</form>
</div>
<div class="div8">
<center>
<form action="bill" method="post">
<button type="submit" class="btn4" name="status" value="1" >Create User</button>
<button type="submit" class="btn4" name="status" value="2">New Bill</button>
<button type="submit" class="btn4" name="status" value="5">cancel</button>
</form>
</center>
</div>
</center>
</body>
</html>