cambia selector de horario a formato 24h

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
David Inostroza
2026-04-28 19:43:54 -04:00
parent b4cc8770a7
commit 72b5ae3a07
+8 -4
View File
@@ -27,14 +27,18 @@
<div class="time-row"> <div class="time-row">
<div class="time-field"> <div class="time-field">
<label>Hora de inicio</label> <label>Hora de inicio</label>
<input type="time" name="start_time" class="input" <input type="text" name="start_time" class="input"
value="{{ config.start_time }}" required> value="{{ config.start_time }}"
placeholder="HH:MM" pattern="[0-2][0-9]:[0-5][0-9]"
maxlength="5" required>
</div> </div>
<div class="time-sep"></div> <div class="time-sep"></div>
<div class="time-field"> <div class="time-field">
<label>Hora de fin</label> <label>Hora de fin</label>
<input type="time" name="end_time" class="input" <input type="text" name="end_time" class="input"
value="{{ config.end_time }}" required> value="{{ config.end_time }}"
placeholder="HH:MM" pattern="[0-2][0-9]:[0-5][0-9]"
maxlength="5" required>
</div> </div>
</div> </div>