
A modern platform that helps companies manage, automate, and monitor their donation-matching programs.
It allows organisations to track contributions, ensure transparency, verify donations, generate reports, and provide employees with a seamless experience when participating in matching initiatives.We are now expanding the platform and building new backend services on top of a scalable, secure, cloud-native architecture. If you enjoy working with clean architecture, cloud infrastructure, and impactful social-good products - this project is for you.
window.addEventListener('DOMContentLoaded', (event) => { // Находим все кнопки "Податься" const applyButtons = document.querySelectorAll('.apply-button'); // Замените на ваш класс кнопки // Находим скрытое поле в форме для вакансии const jobInput = document.querySelector('#job-title-input'); // Замените на ID вашего input applyButtons.forEach(button => { button.addEventListener('click', function(e) { // Получаем название вакансии из атрибута data-job-title const jobTitle = this.getAttribute('data-job-title'); // Устанавливаем значение в скрытое поле формы if (jobInput) { jobInput.value = jobTitle; } }); }); });