-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustomer.html
More file actions
184 lines (85 loc) · 1.92 KB
/
Copy pathcustomer.html
File metadata and controls
184 lines (85 loc) · 1.92 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
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html>
<title>Customer</title>
<head>
<style>
body{
margin: 0;
padding: 0;
background: url(picture8.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 input[type="text"]
{
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>Customer</h1>
<form action="add_customer.php" method="post">
<p>Customer_ID <input type="number" name="a" placeholder="Enter customer id" required></p>
<p>Customer_Name <input type="text" name="b" placeholder="Enter customer name"></p>
<p>Customer_Phone <input type="number" name="c" placeholder="Enter phone"></p>
<p> <input type="submit" align="middle" value="Submit"></p>
</form>
<form action="getCustomerInfo.php" method="post">
<p> <input type="submit" align="middle" value="Get Customer Info"></p>
</form>
</div>
</body>
</html>