-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
331 lines (148 loc) · 7.25 KB
/
index.php
File metadata and controls
331 lines (148 loc) · 7.25 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
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Alameda County CAN-Banking Menu</title>
<?php include("head.html"); ?>
<script type="text/javascript" src="../js/jquery.js" charset="utf-8"> </script>
<script type="text/javascript" src="../js/superfish.js" charset="utf-8"> </script>
<link type="text/css" rel="stylesheet" href="../css/superfish.css">
<link type="text/css" rel="stylesheet" href="FpStyles.css">
<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>
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery("#terms").change(
function(){
if($(this).attr('checked'))
$("input[type=submit]").attr('disabled','');
else
$("input[type=submit]").attr('disabled','disabled');
//$("input[type=submit]").blur();
});
jQuery("#login_form").submit(function() {
var unameval = $("#username").val();
var pwordval = $("#password").val();
jQuery.post("backend.php", { username: unameval,
password: pwordval },
function(data) {
$("p#status").html(data);
});
return false;
});
});
</script>
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery("#FIlist").toggle(
function(){
jQuery("#droplist1").fadeIn("slow");
},
function(){
jQuery("#droplist1").fadeOut("slow");
}
);
});
</script>
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery('ul.sf-menu').superfish();
});
</script>
<style type="text/css">
<!--
.style1 {font-size: 26px}
.style2 {font-size: 32px}
.style4 {color: #660099}
-->
</style>
</head>
<body>
<div class="container">
<div >
<?php include("headernavTEMP.html");?>
</div>
<br />
<div style="clear:both;margin-top:10px">
<h2 align="center" class="style2" style="margin-bottom: 0" > Welcome to AC CAN's Online Banking Menu!</h2>
</div>
<div style="width:95%;margin-left:8%">
<div id="IntroContent">
<p>This is a tool developed by AC CAN member organizations to help service providers connect their clients with the "best fit" financial product for that person's particular needs and preferences. Our assessment is based on consumer research and feedback from providers and clients on the needs and experiences of low-income people in the financial system. </p>
<hr />
<h3 class="style1" style="margin-top: 0;">Information about the Banking Menu</h3>
<ul style="margin-bottom: 0;">
<li class="style4" id="FIlist">Click to See Financial Institutions with products in the system </li>
<?php include('droplist1.php'); ?>
<li>
<span class="style4"><a href="documents/TermsofUseforBankingMenuLogin11.18.09FINAL_001.pdf">Read our terms of use and disclaimer.</a></span><span style="font-size:smaller"> Have a product or institution that isn't included or have comments about how a product is presented? Email
admin(at)alamedacountycan.org to find out how to include your product in the Banking Menu.</span> </li>
<li><a href="documents/BankingMenuFAQNovember2009.pdf" target="blank" class="style4">Banking Menu FAQs</a></li>
<li><a href="BankingMenuDataCollectionTemplate11.18.09_000.xlt" class="style4">Data Tracking </a></li>
<li><a href="http://www.alamedacountycan.org/about.shtml" target="blank" class="style4">AC CAN Mission and Philosophy </a></li>
</ul>
<hr />
<h3 class="style1" style="margin-top: 0;">Watch a How-to Demo</h3>
<p style="margin-bottom: 0;">
<object style="padding-left:50px" width="425" height="344">
<param name="movie" value="http://www.youtube.com/v/o7LZJVjJ2cE&hl=en_US&fs=1&">
</param>
<param name="allowFullScreen" value="true">
</param>
<param name="allowscriptaccess" value="always">
</param>
<embed src="http://www.youtube.com/v/o7LZJVjJ2cE&hl=en_US&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed>
</object>
</p>
</div>
<div id="RightColumn">
<div><p id="status" style="margin-bottom: 0"></p></div>
<div id="FpLoginForm">
<form method="post" id="login_form" style="margin-bottom: 0;">
<p>Username: <input type="text" id="username" /></p>
<p>Password:  <input type="password" id="password" /></p>
<fieldset>
<table>
<tr>
<td><input type="checkbox" width="10" height="10" id="terms" value="YES"/></td>
<td style="margin-left:5px;text-align:center"><span style="margin-left:3px;font-size:smaller" />I have read and agree to the <a target="blank" href="../documents/Terms of Use for Banking Menu Login 11.18.09FINAL.pdf">terms of use</a></span></td>
</tr>
</table>
</fieldset>
<p style="margin-bottom: 0;"><input type="submit" disabled="disabled" value="Login" /></p>
</form>
</div>
<!--<img src='../images/bankmenu.png'/>
<b>Email admin(at)alamedacountycan.org to join AC CAN or get a subscription*</b>
<p style="margin-top: 0; margin-bottom: 0;"><br />
*For subscriptions, we accept payment via check made out to Urban Strategies Council with "Banking Menu Subscription" in the memo field. Payment must be received at 672 13th Street, Oakland CA 94612 before a password is administered. </p>
-->
<div style="border:solid thin black;margin-top:5px;width:87%;margin-left:18px">
<p align="left" style="margin-top:0;">The Banking Menu is free to <a href="../members.shtml">AC CAN Members</a></p>
<p align="left">For non-members, there is a <strong>$120 annual subscription</strong> fee <em>per organization</em>.</p>
<ul >
<li style="font-size:smaller">Payment is accepted via PayPal.</li>
<li style="font-size:smaller">Login ID’s are generated by a live human, so please allow one week.</li>
</ul>
<p align="left" style="margin-bottom: 0px;">For questions, email admin(at)alamedacountycan.org</p>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" style="margin-top: 0; margin-bottom: 0;">
<div align="center">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="3W9U6HUL76MVG">
<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_paynowCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
</div>
</form>
</div>
</div>
<br />
<div style="clear:both;width:90%;margin-top:10px">
<?php
include("../footer.php");
?>
</div></div></div>
</body>
</html>