searchInput.ftl

 1   <#macro searchInput name label="" value="" type="">
 2     <div class="col-md">
 3       <div class="form-floating">
 4         <input type="${(type?length > 0)?then(type, 'text')}" class="form-control border-0" id="${name}" placeholder=" " name="${name}" value="${value}" >
 5         <label for="${name}" class="w-100">${label}<span class="text-danger float-end fw-bold" style="font-size: 1.6em;">*</span></label>
 6       </div>
 7     </div>
 8   </#macro>