It’s actually impossible to sign up to this, every time you click the link from the signup email you see the passsword form for a split second before being redirected to a circleci.com domain which 404’s as it cannot find that idea.
The offending code is
function location_from_idea_id (idea_id) {
var location = "https://circleci.com/ideas";
if (idea_id) {
return location + "?idea=" + idea_id.toString();
} else {
return location;
}
}
if (!in_iframe()) {
// $ window.location.href
// "https://circleci.ideas.aha.io/ideas/CCI-I-183"
// $ window.location.pathname.split("/")[2]
// "CCI-I-183"
var idea_id = window.location.pathname.split("/")[2];
window.location.href = location_from_idea_id(idea_id);
}
Thanks for letting us know about these issues. We need to iron out some wrinkles with it! I’ve let the team know and we’ll work to get it fixed and easier to use.