Lee Wyatt Corp · One Account

Sign in with WyConnect

WyConnect is the single login behind every Lee Wyatt Corp product. One account, one button, the same identity everywhere, from WyRemover to Jobbr to AddyDaddy. Add it to a Lee Wyatt Corp app in minutes, or hand the prompt below to your AI agent and let it wire everything up.

↑ a real, live WyConnect button

Live and working today for every website and app. There is no approval list, just the same accounts and profiles everywhere.

Use it anywhere: WyConnect works on every normal website, desktop app, native app, and extension flow. There is no registration or per-app approval step.

What WyConnect handles vs. what your app handles

WyConnect gives you a verified identity. Your app owns everything else.

WyConnect handles

  • Sign-in & sign-out
  • Account identity & user ID
  • Session tokens
  • Email / password & recovery
  • Shared profile (name, avatar)
  • Connected logins (Discord)
  • Delete-your-account

Your app handles

  • App-specific profiles
  • Orders & payments
  • Settings & preferences
  • Roles & permissions
  • Game data & saves
  • Saved content & history

Add it yourself in 3 steps

  1. Use your own app name. Pick an app ID and name so people can see where they are continuing.
  2. Drop in the button. Paste the snippet below where you want the login to appear.
  3. Verify on your server. Send the user's token to your backend and confirm it before you trust them, copy the ready-made helper from https://leewyattcorp.com/connect/verify/ (Node or Python, no secret keys).

Drop-in code

<link rel="stylesheet" href="https://leewyattcorp.com/connect/wyconnect.css">
<script src="https://leewyattcorp.com/connect/wyconnect.js"></script>
<div id="wy-btn"></div>
<script>
  WyConnect.init({ appId: "my-app", appName: "My App" });
  WyConnect.renderButton("#wy-btn");
  WyConnect.onChange(function (session) {
    if (session) {
      // session.user.email, session.user.id, session.access_token
      // send session.access_token to your backend to verify it
    }
  });
</script>

Use a unique appId per product. Full docs & server verify helpers: https://leewyattcorp.com/connect/README.md · working demo: https://leewyattcorp.com/connect/example/

Backend checklist

Every app that uses WyConnect must verify tokens server-side. These are not optional.

Copy the verifier: https://leewyattcorp.com/connect/verify/ (verify-token.js for Node, verify_token.py for Python).

Or just give this to your AI agent

Building with Cursor, Claude, Codex, Copilot, or any coding AI? Copy this prompt, paste it in, and your agent has everything it needs to add "Sign in with WyConnect" correctly.

The prompt tells your agent to verify tokens server-side and use the official SDK, with no registration step.

Why one login