Edit your listingUpdate your services, bio, hourly rates, team size, and contact info at any time.
Track your profile viewsSee how many businesses are visiting your listing each week.
Upgrade to VerifiedGet a verified badge and priority ranking for $89/month.
Keep your account secureChange your password anytime from account settings.
// Show error messages when redirected here with an error param (e.g. expired magic link)
(function() {
const params = new URLSearchParams(location.search);
const error = params.get('error');
if (!error) return;
const errDiv = document.getElementById('loginError');
const messages = {
invalid_token: 'This magic link has expired or was already used. Please request a new one.',
internal_error: 'Something went wrong. Please try again.',
};
if (errDiv && messages[error]) {
errDiv.textContent = messages[error];
errDiv.style.display = 'block';
}
})();