Direct Deposit & Pay

Manage your direct deposit accounts and payment settings

Add Direct Deposit

Set up a new account

<%= form_tag "#", { class: "needs-validation", id: "bank_info_form" } do %>
<%= text_field_tag :bank_account_num, params[:bank_account_num], { placeholder: "Enter account number", class: "form-control" } %>
Your bank account number
<%= text_field_tag :bank_routing_num, params[:bank_routing_num], { placeholder: "Enter routing number", class: "form-control" } %>
9-digit routing number
<%= text_field_tag :dd_percent, params[:dd_percent], { placeholder: "e.g., 100", class: "form-control" } %> %
What percentage to deposit (1-100)
<%= submit_tag "Add Account", { id: "dd_form_btn", class: "btn btn-success btn-lg" } %>
Secure: All account information is encrypted
<% end %>

Decrypt Account Number

View unencrypted account number

<%= form_tag "#", { class: "needs-validation", id: "decrypt_form" } do %>
<%= text_field_tag :value_to_decrypt, params[:value_to_decrypt], { placeholder: "Paste encrypted value", class: "form-control" } %>
Copy from the table on the right
<%= submit_tag "Decrypt", { id: "decrypt_btn", class: "btn btn-warning btn-lg" } %>
Decryption is for your convenience and security verification
<% end %>

Direct Deposit Accounts

Your configured bank accounts

Encrypted Account Number Routing Number Deposit % Actions
Instant Access

Your paycheck is deposited directly into your account on payday.

Secure & Encrypted

All banking information is encrypted using industry-standard security.

Split Deposits

Allocate different percentages of your pay to multiple accounts.

<%= javascript_include_tag "jquery.dataTables.min.js" %>