7 lines
316 B
PHP
7 lines
316 B
PHP
<?
|
|
use ui\input\Input;
|
|
?>
|
|
<div data-input="text" data-name="<?=$this->name;?>" <?=$this->getDataInit();?>>
|
|
<?= ($c = $this->label)?'<div class="label"><label>'.$c.'</label></div>':'';?>
|
|
<input value="<?=h($this->value);?>" type="text" class="i" placeholder="<?=$this->options[Input::PLACEHOLDER];?>"/>
|
|
</div>
|