2022-10-02 12:19:00 +03:00
|
|
|
let button = document.querySelector("#createLabelButton");
|
|
|
|
button.addEventListener("click", function() {
|
|
|
|
$.ajax({
|
2022-10-23 15:27:45 +03:00
|
|
|
url: "http://localhost:3000/api/create/label",
|
2022-10-02 12:19:00 +03:00
|
|
|
type: "POST",
|
|
|
|
success: function(data) {
|
|
|
|
if(data.status) {
|
|
|
|
$(".toast-body").text(data.message);
|
|
|
|
let toastLiveExample = document.getElementById('liveToast');
|
|
|
|
let toast = new bootstrap.Toast(toastLiveExample);
|
|
|
|
toast.show();
|
|
|
|
} else {
|
|
|
|
$(".toast-body").text("An error occurred while creating the label.");
|
|
|
|
let toastLiveExample = document.getElementById('liveToast');
|
|
|
|
let toast = new bootstrap.Toast(toastLiveExample);
|
|
|
|
toast.show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|