Files
code-cegled/template/templates/training_template_create.tpl
Tóth Richárd 59c984dd9b templates
2018-09-18 23:38:14 +02:00

43 lines
1.4 KiB
Smarty

<div class="form_wrapper">
<form method="post">
<input type="hidden" name="action" value="training_template_create">
<div>
<label class="desc" id="title1" for="tt_name">Új edzés sablon neve:</label>
<div><input type="text" name="tt_name" id="tt_name" required></div>
</div>
<div>
<label class="desc" id="title1" for="tt_time">Edzés ideje:</label>
<div><input type="text" name="tt_time" id="tt_time" placeholder="ÓÓ:PP"></div>
</div>
<div>
<label class="desc" id="title2" for="tt_training_type">Típus:</label>
<div>
<select name="tt_training_type" id="tt_training_type">
<option value="null"> - </option>
{foreach $training_type_assoc_array as $training_type_array}
<option value="{$training_type_array.trt_id}">
{$training_type_array.trt_name}
</option>
{/foreach}
</select>
</div>
</div>
<div>
<label class="desc" id="title1" for="tt_duration">Időtartam (perc):</label>
<div><input type="text" name="tt_duration" id="tt_duration"></div>
</div>
<div>
<div>
<input class="button black" type="submit" value="Létrehozás">
</div>
</div>
</form>
</div>