123456789101112131415161718192021 |
- <div class="mb-3 row">
- <label class="col-md-2 col-form-label" >文本域高度(px)</label>
- <div class="col-md-10">
- <input type="text" name="setting[height]" value="<?php echo $setting['height'];?>" autocomplete="off" class="form-control" >
- </div>
- </div>
- <div class="mb-3 row">
- <label class="col-md-2 col-form-label" >默认值</label>
- <div class="col-md-10">
- <input type="text" name="setting[default_value]" value="<?php echo htmlspecialchars($setting['default_value']);?>" autocomplete="off" class="form-control" >
- </div>
- </div>
- <div class="mb-3 row">
- <label class="col-md-2 col-form-label">允许Html</label>
- <div class="col-md-10">
- <input value="1" id="switch-enable_html" type="checkbox" switch="success" class="row-switch" name="setting[enable_html]" <?php if(isset($setting['enable_html'])&&$setting['enable_html']==1){?> checked <?php }?>>
- <label class="switch-check-label " for="switch-enable_html" data-on-label="是" data-off-label="否"></label>
- </div>
- </div>
|