You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
824 B
34 lines
824 B
<?php |
|
|
|
use core\forms\FaviconForm; |
|
use kartik\form\ActiveForm; |
|
use yii\helpers\Html; |
|
|
|
/** |
|
* @var yii\web\View $this |
|
* @var FaviconForm $model |
|
*/ |
|
|
|
$this->title = Yii::t('main', 'Set Favicon'); |
|
$this->params['breadcrumbs'][] = ['label' => Yii::t('main', 'Settings'), 'url' => ['index']]; |
|
$this->params['breadcrumbs'][] = $this->title; |
|
?> |
|
<div class="favicon-create"> |
|
|
|
<div class="box box-default"> |
|
<div class="box-body"> |
|
|
|
<?php $form = ActiveForm::begin(); ?> |
|
|
|
<?= $form->field($model, 'image')->fileInput(['accept' => 'image/png']) ?> |
|
|
|
<div class="form-group"> |
|
<?= Html::submitButton(Yii::t('buttons', 'Save'), ['class' => 'btn btn-success']) ?> |
|
</div> |
|
|
|
<?php ActiveForm::end(); ?> |
|
|
|
</div> |
|
</div> |
|
|
|
</div>
|