10 lines
319 B
JavaScript
10 lines
319 B
JavaScript
(function () {
|
|
document.getElementById('cancelGoogleSignupButton').onclick = function () {
|
|
document.getElementById('loading').style.visibility = 'visible';
|
|
|
|
MapGuesser.httpRequest('POST', '/signup/google/reset', function () {
|
|
window.location.replace('/signup');
|
|
});
|
|
};
|
|
})();
|