Swal.fire({
input: 'textarea',
inputLabel: 'Message',
inputPlaceholder: 'Type your message here...',
inputAttributes: {
'aria-label': 'Type your message here'
},
showCancelButton: true
}).then((swalResult) => {
if (swalResult.isConfirmed) {
console.log('Veri alındı: ' + swalResult.value);
}
else if (swalResult.isDenied) {
console.log('Veri alınmadı/reddedildi.');
}
});