const dropdown = document.getElementById("author");
const quotes = document.getElementById("quotes");
dropdown.insertAdjacentHTML("beforeend", '');
function appendOption(response) {
response.forEach((elem) => {
dropdown.insertAdjacentHTML(
"beforeend",
``
);
});
}
function appendQuote(response) {
response.forEach((elem) => {
quotes.insertAdjacentHTML(
"beforeend",
`
${elem["name"]} ${elem["middlename"] ? elem["middlename"] : " "}${elem["surname"]}: ${
elem["quote"]
}`
);
});
}
fetch("/auth/api/list")
.then((response) => response.json())
.then((response) => appendOption(response));
fetch("/quotes/api/list")
.then((response) => response.json())
.then((response) => appendQuote(response));