Get Started
Features
How It Works
Pricing
Testimonials
Login
Create Account
Start your free trial with LinkBoost Pro today.
Email Address
Password
Confirm Password
Create Account
function handleCredentialResponse(response) { $.ajax({ type: "POST", url: "/Account/GoogleRegister", data: { token: response.credential }, success: function (res) { if (res.status === "Success") { window.location.href = "/Dashboard/Welcome"; } else { alert(res.status); } } }); }