This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
lnapp/views/field/textarea.php

8 lines
532 B
PHP
Raw Normal View History

<!-- field = field_name -->
<!-- text = field_text -->
<!-- value = value -->
<div class="form-group" style="margin-left: 0px">
<label for="cert"><?php echo $data['text']; ?></label>
<textarea class="form-control" id="cert" name="<?php echo $data['field']; ?>" placeholder="<?php echo $data['text']; ?>" style="font-family: monospace; width: auto; resize: none;" rows="<?php echo Form::textarea_rows($data['value']); ?>" cols="<?php echo Form::textarea_cols($data['value'],78); ?>"><?php echo $data['value']; ?></textarea>
</div>