Ваши кармические баллы:
800
На что можно потратить баллы?
Продукты ШКП со скидкой до 50 %
async function getKarma() { let email = document.getElementById('email').value // вместо email - id блока с вводом email let response = await fetch(`https://api.curator.comfort-academy.ru/karma/get-by-email/${email}`) if(!response.ok) window.location.href = 'https://google.com/' // страница переадресации если юзера нет в базе document.querySelector('#karma').innerHTML = await response.text() // вместо #karma - id блока с баллами }