templates
This commit is contained in:
42
template/templates/training_template_create.tpl
Normal file
42
template/templates/training_template_create.tpl
Normal file
@@ -0,0 +1,42 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user