Refactor
This commit is contained in:
parent
ca8d40d65d
commit
7efc3cdcb8
1 changed files with 15 additions and 14 deletions
|
@ -5,10 +5,11 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace wishthis;
|
namespace wishthis;
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<div class="ui secondary menu wish-add">
|
<div class="ui secondary menu wish-add">
|
||||||
<a class="item active" data-tab="general"><?= __('General') ?></a>
|
<a class="item active" data-tab="general"><?= __('General') ?></a>
|
||||||
<a class="item disabled" data-tab="product"><?= __('Product') ?></a>
|
<a class="item disabled" data-tab="product"><?= __('Product') ?></a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -22,10 +23,10 @@ namespace wishthis;
|
||||||
|
|
||||||
<div class="ui input">
|
<div class="ui input">
|
||||||
<input type="text"
|
<input type="text"
|
||||||
name="wish_title"
|
name="wish_title"
|
||||||
placeholder="<?= $wish->title ?? '' ?>"
|
placeholder="<?= $wish->title ?? '' ?>"
|
||||||
value="<?= $wish->title ?? '' ?>"
|
value="<?= $wish->title ?? '' ?>"
|
||||||
maxlength="128"
|
maxlength="128"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -34,7 +35,7 @@ namespace wishthis;
|
||||||
<label><?= __('Description') ?></label>
|
<label><?= __('Description') ?></label>
|
||||||
|
|
||||||
<textarea name="wish_description"
|
<textarea name="wish_description"
|
||||||
placeholder="<?= $wish->description ?? '' ?>"
|
placeholder="<?= $wish->description ?? '' ?>"
|
||||||
><?= $wish->description ?? '' ?></textarea>
|
><?= $wish->description ?? '' ?></textarea>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -46,10 +47,10 @@ namespace wishthis;
|
||||||
<label><?= __('URL') ?></label>
|
<label><?= __('URL') ?></label>
|
||||||
|
|
||||||
<input type="url"
|
<input type="url"
|
||||||
name="wish_url"
|
name="wish_url"
|
||||||
placeholder="<?= $wish->url ?? '' ?>"
|
placeholder="<?= $wish->url ?? '' ?>"
|
||||||
value="<?= $wish->url ?? '' ?>"
|
value="<?= $wish->url ?? '' ?>"
|
||||||
maxlength="255"
|
maxlength="255"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -100,10 +101,10 @@ namespace wishthis;
|
||||||
<label><?= __('Price') ?></label>
|
<label><?= __('Price') ?></label>
|
||||||
|
|
||||||
<input type="text"
|
<input type="text"
|
||||||
name="wish_price"
|
name="wish_price"
|
||||||
placeholder="<?= $wish->price ?? '' ?>"
|
placeholder="<?= $wish->price ?? '' ?>"
|
||||||
value="<?= $wish->price ?? '' ?>"
|
value="<?= $wish->price ?? '' ?>"
|
||||||
maxlength="9"
|
maxlength="9"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue