Add auth to your site
in 2 minutes.

Drop one script tag into your HTML. Get login, signup, Google, GitHub, Apple, Microsoft, and more. No backend required.

Create Free Account See the Code
โšก

One Script Tag

Paste our embed code and you have login/signup. No frameworks, no build tools.

๐Ÿ”‘

Social Logins

Google, GitHub, Apple, Microsoft, Patreon โ€” just add your OAuth client ID.

๐Ÿ—๏ธ

Isolated User Tables

Each app gets its own hashed database table. Your users' data is completely isolated.

๐ŸŽจ

Customizable

Match your brand colors and logo. Hosted page or embedded widget โ€” your choice.

๐Ÿ”’

Passwords Hashed

bcrypt hashing built in. We never store plaintext passwords.

๐Ÿ“Š

Dashboard

See all your users, manage providers, copy keys โ€” all from one clean dashboard.

Integration is this simple:

Option 1: Embed widget

<script src="https://auth.velocomputing.tech/embed.js" data-key="YOUR_PUBLIC_KEY"> </script>

Option 2: Redirect to hosted page

<a href="https://auth.velocomputing.tech/auth.html ?key=YOUR_PUBLIC_KEY &redirect=https://yoursite.com/callback"> Log In </a>

Option 3: Use the JS SDK

<script src="https://auth.velocomputing.tech/embed.js"></script> <script> const auth = new AuthPlus('YOUR_PUBLIC_KEY'); auth.onLogin(user => { console.log('Logged in:', user.email); }); auth.open(); // opens modal </script>