11 lines
634 B
Plaintext
11 lines
634 B
Plaintext
|
{% import "includes/macros" as macros %}
|
||
|
|
||
|
<div class="hidden">
|
||
|
<form action="/cox/trip" method="post" class="grid gap-3" id="sidebarForm">
|
||
|
<input class="day-js" type="hidden" name="day" value="" />
|
||
|
{{ macros::input(label='Startzeit (zB "10:00")', name='planned_starting_time', type='time', required=true) }}
|
||
|
{{ macros::input(label='Anzahl Ruderer (ohne Steuerperson)', name='max_people', type='number', required=true, min='0') }}
|
||
|
{{ macros::input(label='Anmerkungen', name='notes', type='input') }}
|
||
|
<input value="Erstellen" class="w-full btn btn-primary" type="submit" />
|
||
|
</form>
|
||
|
</div>
|