8 lines
245 B
PHP
8 lines
245 B
PHP
|
|
<?
|
||
|
|
|
||
|
|
namespace ui\input;
|
||
|
|
class Cancel extends Input{
|
||
|
|
public function render(array $opt = array()): string {
|
||
|
|
return '<a class="btn btn-danger" name="'.$this->name.'" href="'.$this->options[Input::LINK].'">'.$this->label.'</a>';
|
||
|
|
}
|
||
|
|
}
|