It is possible to set a default value for the time only or make the time optional for a datetime-local input (see this article as reference: MDN web-docs):
<input type="datetime-local" value="2017-06-01T08:30" required/>
How can I preload only the time or make the time, but not the date optional, e. g.:
<input type="datetime-local" value="YYYY-MM-DDT12:05" required/>