I want to default a date input control to today
<cfoutput>
    <input type="date" class="form-control" name="dtStart" value="#LSDateFormat(now(), 'mm/dd/yyyy')#" required />
    <br />
    My Date: #LSDateFormat(now(), 'mm/dd/yyyy')#
</cfoutput>
All I get out of this is
Is there a way to get it to default to today?

 
     
    
 
    