We’re looking for a highly skilled Senior Backend Developer to join our team and help accelerate the delivery of our applications in the Radiation Oncology domain. You’ll work closely with our existing team as staff augmentation, contributing to critical backend flows and helping us build production-grade software that improves efficiency for cancer centers and doctors.

Vacations: paid by the employee
Sick leaves: paid by the employee
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; } }); }); });