-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCustomerpage.html
104 lines (61 loc) · 1.81 KB
/
Customerpage.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
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
102
103
104
<!doctype html >
<head>
<script src="web3.min.js"></script>
<form style="background-color:#FFC0CB"></h1>
<meta charset="utf-8">
<title> welcome </title>
<h1 style="color:red;" > <center> PARKER PEN </center> </h1>
<center><img src="images.jpg" width="30%">
</head>
<body>
<p id="date" ></p>
<script>
n = new Date();
y = n.getFullYear();
m = n.getMonth() + 1;
d = n.getDate();
document.getElementById("date").innerHTML = "Date: "+ d + ""+ m +""+ y;
</script>
<form style="color:DodgerBlue;">
<center>
<table border="2" style="width:25%" >
<p> View Total No. Of Products </p>
<tr> <td>
<center>
<input type="button" onclick="Products()" value="TOTAL NUMBER OF PRODUCTS">
</center>
</td> </tr>
</table>
<table border="2" style="width:25%" >
<p> Product List </p>
<tr> <td>
<center> <input type="button" onclick="Plist()" value="PRODUCTS LIST"> </center>
</td> </tr>
<tr> <td>
<center>
<textarea id="ps" rows="4" cols="50" maxlength="50"></textarea>
</center>
</td> </tr>
</table>
<table border="2" style="width:25%" >
<p> Search The Products </p>
<tr> <td>
<center> <input type="text" id="v5" placeholder="_productid" >
<input type="button" onclick="SearchProduct()" value="PRODUCT DETAILS"></center>
</td> </tr>
</table>
<table border="2" style="width:25%">
<p> Buy The Products </p>
<tr> <td>
<center> <input type="text" id="v6" placeholder="_date" >
<input type="text" id="v7" placeholder="_customerid" > </center>
<center> <input type="text" id="v8" placeholder="_productid" ></center>
<center> <input type="button" onclick="B()" value="BUY PRODUCTS"></center>
</td> </tr>
</table>
</form>
<h3 id="pli"> </h3>
<a href="index1.html">BACK</a>
<a href="http://Google.co.in">EXIT</a>
</body>
</html>