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 Lee Wyatt Corp products. Each app's web address is added to a security allowlist, then the button just works — same accounts, same profiles, everywhere.

Outside sites: for security, WyConnect only sends sessions to web addresses we've approved. If you want WyConnect on a site that isn't a Lee Wyatt Corp product, email brandon@leewyattcorp.com and we'll add your address. A fully self-serve, open "Sign in with WyConnect" for any third party (OAuth2/OIDC) is on the roadmap, not live yet.

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. Get your site approved. If it's a Lee Wyatt Corp product it's already covered; otherwise email us your exact web address to allowlist.
  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 to ask you to get the site approved — no fake "works everywhere" shortcuts.

Why one login