2018-06-09 18:07:53 +08:00
|
|
|
(function (global, document) {
|
2018-06-24 10:01:21 +08:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
(document);
|
2018-06-09 18:07:53 +08:00
|
|
|
|
|
|
|
// Talks to the API and sends an reset email.
|
2019-03-03 03:37:35 +08:00
|
|
|
global.sendResetHex = function(event) {
|
|
|
|
event.preventDefault();
|
|
|
|
|
2018-06-24 10:01:21 +08:00
|
|
|
var allOk = global.unfilledMark(["#email"], function(el) {
|
2018-06-09 18:07:53 +08:00
|
|
|
el.css("border-bottom", "1px solid red");
|
|
|
|
});
|
|
|
|
|
2018-06-24 10:01:21 +08:00
|
|
|
if (!allOk) {
|
2018-06-09 18:07:53 +08:00
|
|
|
global.textSet("#err", "Please make sure all fields are filled.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var json = {
|
|
|
|
"email": $("#email").val(),
|
|
|
|
};
|
|
|
|
|
|
|
|
global.buttonDisable("#reset-button");
|
2018-12-20 13:48:43 +08:00
|
|
|
global.post(global.origin + "/api/owner/send-reset-hex", json, function(resp) {
|
2018-06-09 18:07:53 +08:00
|
|
|
global.buttonEnable("#reset-button");
|
|
|
|
|
|
|
|
global.textSet("#err", "");
|
|
|
|
if (!resp.success) {
|
|
|
|
global.textSet("#err", resp.message);
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
$("#msg").html("If that email is a registered account, you will receive an email with instructions on how to reset your password.");
|
|
|
|
$("#reset-button").hide();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-12-20 13:48:43 +08:00
|
|
|
} (window.commento, document));
|