-
Notifications
You must be signed in to change notification settings - Fork 0
/
baks
135 lines (126 loc) · 3.44 KB
/
baks
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Alameda County CAN</title>
<?php
include("head.html");
?>
<script type="text/javascript" src="../js/jquery.js" />
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
<script src="../accan2008.js"></script>
<script type="text/javascript">
_uacct = "UA-697750-4";
urchinTracker();
</script>
<link type="text/css" rel="stylesheet" href="FpStyles.css">
<script type="text/javascript" charset="utf-8">
$(document).ready( function()
{
$(".ro").hover(
function(){
if($(this).attr("src").indexOf("_o") == -1) {
var newSrc = $(this).attr("src").replace(".png","_o.png#hover");
$(this).attr("src",newSrc);
}
},
function(){
if($(this).attr("src").indexOf("_o.png#hover") != -1) {
var oldSrc = $(this).attr("src").replace("_o.png#hover",".png");
$(this).attr("src",oldSrc);
}
}
);
});
</script>
<script type="text/javascript">
$(document).ready(function() {
$("#login_form").submit(function() {
var unameval = $("#username").val();
var pwordval = $("#password").val();
$.post("backend.php", { username: unameval,
password: pwordval },
function(data) {
$("p#status").html(data);
});
return false;
});
});
</script>
<script type="text/javascript">
$(document).ready(function() {
$("#FIlist").click(
function(){
$("#droplist").fadeIn("slow");
},
function(){
$("#droplist").fadeOut("slow");
}
);
});
</script>
</head>
<body>
<div id="container">
<div align="left">
<p style="margin-top: 0; margin-bottom: 0;">
<?php
include("headernav.html");
?>
<div id="IntroContent">
<p><h2> Welcome to AC CAN's Online Banking Menu!</h2></p>
<ul><h4>With this tool you can:</h4>
<ul>
<li>Answer the questions about financial product needs and preferences to help find a "best fit" product</li>
<li>Find detailed information about product features and fees</li>
</ul>
</ul>
<br />
<p><h3>Watch a How to Demo</h3></p>
<div id="TrainingVideo">
<h1>Training video</h1>
</div>
<div id="member">
<p>The Banking Menu is available only through password access. In order to obtain a password, you must:
<ul>
<li>become a <b>Working Member</b> or <b>Partner of AC CAN</b> </li>
<i>or</i>
<li>pay a subscription fee of $5 per month or $60 annually</li>
</ul>
</p>
</div>
<br/>
<br />
<br/>
<p>To join AC CAN or register for a login password via a subscription, email Lisa Forti
at urbanstrategies.org. For subscriptions, we accept credit card payment which must be received before a password
is administered.</p>
</div>
<div id="RightColumn">
<div id="FpLoginForm">
<p id="status"></p>
<form id="login_form" method="post">
<p>Username: <input type="text" id="username" /></p>
<p>Password: <input type="password" id="password" /></p>
<p><input type="submit" value="Login" /></p>
</form>
</div>
<br />
<div id="RightContent">
<h3>Products in the Banking Menu</h3><br/>
<li id="FIlist">Includes 15 Financial Institutions</li>
<ul>
<?php include('droplist.php'); ?>
</ul>
<li>Add Content</li>
<li>Add Content</li>
<li>Add Content</li>
<p>Have a product that isn't included here? Email Lisa Forti
at urbanstrategies.org to find out how to include your product in the Banking Menu</p>
<div>
</div>
<?php
include("footer.shtml");
?>
</div>
</body>
</html>