BranchPy
Home
Changelog
Community
Documentation
About
Legal Hub
Create your account
Join the BranchPy community
Email
We'll send you a verification email
Username
3-50 characters, letters, numbers, _ and - only
Full Name (optional)
Studio Name (optional)
Your studio or project name, if applicable
Password requirements:
At least 8 characters
Mix of letters and numbers recommended
Password
Confirm Password
Security verification
Complete the security check to create your account
Enable two-factor authentication (recommended)
Add extra security using Microsoft Authenticator, Google Authenticator, Authy, 1Password, or Bitwarden. You can set it up right after creating your account.
Create account
Already have an account?
Log in
// Turnstile CAPTCHA callbacks let turnstileToken = null; window.onTurnstileSuccess = function(token) { turnstileToken = token; document.getElementById('submitBtn').disabled = false; console.log('Turnstile verification successful'); }; window.onTurnstileError = function() { turnstileToken = null; document.getElementById('submitBtn').disabled = true; showAlert('Security verification failed. Please refresh and try again.'); }; window.onTurnstileExpired = function() { turnstileToken = null; document.getElementById('submitBtn').disabled = true; showAlert('Security verification expired. Please verify again.'); };