CensoredManager/assets/js/activate.js

22 lines
893 B
JavaScript
Raw Normal View History

const token = docCookies.getItem("token");
const notificationElement = document.getElementById("notification");
const balanceElement = document.getElementById("balance");
window.addEventListener("load", async function () {
balanceElement.innerText = await getBalance(token);
});
document.getElementById("activate-form").addEventListener("submit", async (e) => {
e.preventDefault();
const id = document.getElementById("id").value;
const infoResult = await chequeInfo(id);
const activateResult = await activateCheque(token, id);
if (activateResult !== undefined) {
notificationElement.innerText = `+${infoResult['amount']} coins`;
notificationElement.style.color = "green";
balanceElement.innerText = activateResult;
} else {
notificationElement.innerText = "Incorrect ID!";
notificationElement.style.color = "red";
}
});