How to show details on selecting checkbox in LWC
....HTML.... < template > < lightning-card title = "Apply for leave" icon-name = "custom:custom14" > < div class = "slds-m-around_medium" > < lightning-input type = "checkbox" label = "Multiple day" onchange = {handleChange1} > </ lightning-input > < template if:true = {areDetailsVisible1} > < div class = "slds-text-heading_small slds-m-bottom_medium" > < lightning-input type = "date" label = "Start date" name = "startDate" > </ lightning-input > < lightning-input type = "date" label = "End date" name = "emailAddress" > </ lightning-input > </ div > </ template > </ div > < div ...