-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMaintenance.html
44 lines (43 loc) · 1.55 KB
/
Maintenance.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
<HTML XMLns="http://www.w3.org/1999/xHTML">
<!--
Student ID : 1784765
Name: Vivek S Patil
Functonality : This page is provided to Admin to process the auctioned items.
Process Auction button processes the items for sold or failed
Generate report button displays the revenue for sold, failed and total revenue
-->
<head>
<title>Login Page</title>
<link rel="stylesheet" type="text/css" href="Shoponline_Style.css">
<script type="text/javascript" src="maintenance.js" ></script>
<script type="text/javascript" src="signout.js" ></script>
</head>
<body>
<div id="container" style="width:100%">
<div id="space" style="width:10%;float:left;"></div>
<div id="header" style="width:90%;float:right;"><H1>ShopOnline</H1></div>
</div>
<ul>
<li><a href="listing.php">Listing</a></li>
<li><a href="bidding.php">Bidding</a></li>
<li><a href="Maintenance.html">Maintenance</a></li>
<li align="right"><input type="submit" value="Signout" name="Signout" onclick="fnSignout()";/></li>
</ul>
<form>
<div id="container2" style="width:100%">
<div id="space2" style="width:10%;float:left;"></div>
<div id="fieldset" style="width:90%;float:right;">
<label> Welcome </label>
<div id="divPAI">
<input type="submit" value="Process Auction Items" onclick="fnProcessAuctionItems();return false;"> <br/>
<p><span id="confirmation"></span></p>
</div><br/>
<div id="divGenerateReport">
<input type="submit" value="Generate Report" onclick="fnGenerateReport();return false;">
<p><span id="report"></span></p>
</div>
</div>
</div>
</form>
</body>
</HTML>