diff --git a/app/views/pay/index.html.erb b/app/views/pay/index.html.erb index 324a108..3895d4b 100644 --- a/app/views/pay/index.html.erb +++ b/app/views/pay/index.html.erb @@ -82,13 +82,18 @@
| - Bank Account Number + | + Encrypted Bank Account Number + <%=link_to "#", { :style => "color:#AA6F93", :id => "encrypted_acct_question"} do %> + + + + <% end %> | Bank Routing Number | -+ | Percentage of Deposit | @@ -267,6 +272,14 @@ $("#dd_form_btn").click(function(event) { }); }); +$("#encrypted_acct_question").click(function(event) { + event.preventDefault(); + alert("For your safety your account number is stored encrypted as well as presented to you \nin an encrypted form.\n\n" + + "For your convenience, you can decrypt your bank account number at any time using our\n" + + "conveniently located decryption function." + ) +}); + /* Make the sidebar element "Pay" active. */ |
|---|