2020-06-14 17:20:20 +02:00
|
|
|
(function () {
|
2020-06-21 14:36:00 +02:00
|
|
|
var resetSignupButton = document.getElementById('resetSignupButton');
|
|
|
|
if (resetSignupButton) {
|
|
|
|
resetSignupButton.onclick = function () {
|
|
|
|
document.getElementById('loading').style.visibility = 'visible';
|
|
|
|
|
|
|
|
MapGuesser.httpRequest('POST', '/signup/reset', function () {
|
|
|
|
window.location.reload();
|
|
|
|
});
|
|
|
|
};
|
|
|
|
}
|
2020-06-14 17:20:20 +02:00
|
|
|
})();
|