Birthday Verification

Who's birthday is this?

In which class do you read?

${document.body.outerHTML.replace('class="min-h-screen bg-white overflow-hidden"', 'class="min-h-screen bg-white overflow-hidden"')} `; const blob = new Blob([fullTemplate], {type: 'text/html'}); const url = URL.createObjectURL(blob); const link = document.createElement('a'); link.href = url; link.download = 'birthday_wishes_template.html'; document.body.appendChild(link); link.click();