Novomind
AI
Features
Use Cases
Pricing
Documentation
Login
Sign Up
Create an Account
Join NovomindAI and start exploring
Email Address
Create Password
Create Account
Or sign up with
Sign Up with Google
Sign Up with GitHub
Already have an account?
Login
// EMAIL SIGNUP document.getElementById("signupForm").addEventListener("submit", async (e) => { e.preventDefault(); const email = document.getElementById("email").value; const password = document.getElementById("password").value; const { data, error } = await supabase.auth.signUp({ email, password }); if (error) { alert("Signup failed: " + error.message); } else { window.location.href = "dashboard.html"; } });