-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpersonal_banking.html
More file actions
60 lines (59 loc) · 1.98 KB
/
personal_banking.html
File metadata and controls
60 lines (59 loc) · 1.98 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
<html>
<head>
<title>Welcome To USBM</title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico"/>
<link rel="stylesheet" type="text/css" href="css/personal_banking.css">
<link rel="stylesheet" type="text/css" href="css/nav_logo.css">
<script type="text/javascript" src="js/cookies.js"></script>
<script type="text/javascript" src="js/excel_login.js"></script>
<script>
var row_no=getCookie("used_rows");
var trans;
function show_notification()
{
var unread_trans=0;
trans=user_trans_sheet.UsedRange.rows.Count;
for(i=2;i<=trans;i++)
{
if(user_trans_sheet.Cells(i,5).value==1)
{
unread_trans++;
}
}
document.getElementById("notification").innerHTML=unread_trans;
}
</script>
</head>
<body onload="checkCookie();setPrev_page();get_usersheet();show_notification();window.page.location.reload();" onunload="sheet_quit();">
<div id="wrap">
<div id="top">
<a href="#"><img src="img5.jpg" height="100px" width="500px" style="border:0px; text-decoration:none;"></a>
<div id="display_user" style="float:right;">
<p id="welcome_user" style="margin-top:85px;margin-right:50px;"></p>
</div>
</div>
<div id="container" border="2px">
<div id="options" border="2px">
<div id="banking_options" style="float:left;">
<ul>
<li><a href="transaction.html" target="page">Transactions (<span id="notification" style="bgcolor:red;">0</span>)</a></li>
<li><a href="transfer.html" target="page">Transfer</a></li>
<li><a href="my_account.html" target="page">My Account</a></li>
</ul>
</div>
<div id="my_account" style="float:right;">
<ul>
<li><a href="#" onClick="deleteCookie();">Logout</a></li>
</ul>
</div>
</div>
<div id="show_pages">
<iframe src="" width=98.5% height=650px frameborder=1px name="page" style="scrolling='auto';padding:0px;"></iframe>
</div>
</div>
<div id="footer">
<hr>
CopyRight © 2014 USBM.
</div>
</body>
</html>