← Authentication & security

Signing in to Banno Online from your website

Your website is the front door to online banking, so it makes sense to let your customers start the process of signing in from there. With Banno, security and delightful experiences are in equal tension, creating a powerful platform for you and your users.

You can enable signing in from your website by adding a simple HTML form to your site that asks for a username. Once a user submits that form, they are taken to the online banking site where they can enter their password followed by two-factor authentication challenges.

Adding remote login to your site

Make sure to get some help from a web developer or a designer.

Use this code, or something like it, to place the form on your site:

<form method="POST" action="https://my.ovation-fi.com/login" autocomplete="off">
  <label>
    Username
    <input type="text" name="username" spellcheck="off" autocorrect="off" autocapitalize="off" required>
  </label>
  <button type="submit">Sign in</button>
  <a href="https://my.ovation-fi.com/forgot">Forgot?</a>
  <a href="https://my.ovation-fi.com/enroll">Enroll</a>
</form>
Password entry is not supported from the remote sign in form. If it’s sent, it will be ignored and the user will have to enter it again.