-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApproveClaimsPage.aspx
96 lines (88 loc) · 4.71 KB
/
ApproveClaimsPage.aspx
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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ApproveClaimsPage.aspx.cs" Inherits="McaWebApp.ApproveClaimsPage" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<link href ="style/style1.css" rel="Stylesheet" />
<title>WCPS :: View Claims</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<div align="center">
<table width ="1000" border="1" style="border-collapse: collapse" bordercolor="#000000" cellspacing="1" cellpadding="0">
<tr>
<td>
<table border="0" width="1000" cellspacing="0" id="table1" cellpadding="0">
<tr>
<td>
<img border="0" src="images/top1.gif" width="1000" height="67/"></td>
</tr>
<tr>
<td height="18" style="padding-top: 10px; padding-bottom: 10px; border-left-width:1px; border-right-width:1px; border-top-width:1px; border-bottom-style:solid; border-bottom-width:1px; background-color:black; color:white" class ="td1" align="left">
Welcome back <span id="sp_name" runat="server"></span> ,
<a style="color:white; text-decoration:none" href="HomePage.aspx"><font size="2pt">Home</font></a> |
<span id="sp_link" runat ="server"></span>
<a style="color:white; text-decoration:none" href="EmployeePage.aspx" onmouseover="";><font size="2pt">Employee</font></a> |
<a id="view_claims" runat="server" style="color:white; text-decoration:none" href="ApproveClaimsPage.aspx"><font size="2pt">Approve Claims</font></a>
<a id="apply_claims" runat="server" style="color:white; text-decoration:none" href="ApplyClaims.aspx"><font size="2pt">Apply Claim</font></a> |
<a style="color:white; text-decoration:none" href="ClaimsStatusPage.aspx"><font size="2pt">View Status</font></a> |
<a href="LogOut.aspx" style="color:white; text-decoration:none"><font size="2pt">Logout</font></a></td>
</tr>
<tr>
<td class="td1" style="background-image: url('images/back1.gif')">
<p> </p>
<p>
</p>
<div align="center">
<table border="1" width="800" cellspacing="1" style="border-collapse: collapse" bordercolor="#999999" id="table2">
<tr>
<td class="td2">
<p align="left"> WCPS : Approve / Reject Claim</td>
</tr>
<tr>
<td>
<table border="0" width="97%" id="table3" cellpadding="2">
<tr>
<td class="td1" align="left" valign="top" colspan="3"> <span id="sp_count" runat="server"></span></td>
</tr>
<tr>
<td align="left" class="td2" colspan="3" valign="top">
<asp:GridView ID="GridView1" runat="server" AllowPaging="True" BackColor="White"
BorderColor="#999999" BorderStyle="Solid" BorderWidth="1px" CellPadding="3" ForeColor="Black"
GridLines="Vertical" OnPageIndexChanging="GridView1_PageIndexChanging" OnRowDataBound="GridView1_RowDataBound"
PageSize="5">
<FooterStyle BackColor="#CCCCCC" />
<PagerStyle BackColor="#999999" ForeColor="Black" HorizontalAlign="Center" />
<SelectedRowStyle BackColor="#000099" Font-Bold="True" ForeColor="White" />
<HeaderStyle BackColor="Black" Font-Bold="True" ForeColor="White" />
<AlternatingRowStyle BackColor="#CCCCCC" />
</asp:GridView>
</td>
</tr>
<tr>
<td align="left" class="td1" colspan="3" valign="top">
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
<p> </p>
<p>
<p> </td>
</tr>
<tr>
<td height="20" style="border-left-width: 1px; border-right-width: 1px; border-top-style: solid; border-top-width: 1px; border-bottom-width: 1px; background-color:black; color:white" class="td1">
<p align="center"><font face="Times New Roman">©</font> WCPS
- Web Based Claims System, 2021</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</div>
</form>
</body>
</html>