Files
thetempusproject/app/plugins/dnd/views/forms/speedInputs.html
2024-08-04 21:15:59 -04:00

30 lines
1.3 KiB
HTML

<div class="form-group">
<label for="climbing_speed" class="col-lg-3 control-label">Climbing Speed</label>
<div class="col-lg-3">
<input type="text" class="form-control" name="climbing_speed" id="climbing_speed" value="{climbing_speed}">
</div>
</div>
<div class="form-group">
<label for="swimming_speed" class="col-lg-3 control-label">Swimming Speed</label>
<div class="col-lg-3">
<input type="text" class="form-control" name="swimming_speed" id="swimming_speed" value="{swimming_speed}">
</div>
</div>
<div class="form-group">
<label for="burrowing_speed" class="col-lg-3 control-label">Burrowing Speed</label>
<div class="col-lg-3">
<input type="text" class="form-control" name="burrowing_speed" id="burrowing_speed" value="{burrowing_speed}">
</div>
</div>
<div class="form-group">
<label for="flying_speed" class="col-lg-3 control-label">Flying Speed</label>
<div class="col-lg-3">
<input type="text" class="form-control" name="flying_speed" id="flying_speed" value="{flying_speed}">
</div>
</div>
<div class="form-group">
<label for="walking_speed" class="col-lg-3 control-label">Walking Speed</label>
<div class="col-lg-3">
<input type="text" class="form-control" name="walking_speed" id="walking_speed" value="{walking_speed}">
</div>
</div>