Skip to content

Commit

Permalink
unneeded nested div
Browse files Browse the repository at this point in the history
  • Loading branch information
notbakaneko committed Jul 3, 2023
1 parent f070dda commit 18092a8
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions resources/views/store/products/username-change.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,16 @@
<div class="js-username-change username-change">
<div style="background-image: url('{{ Auth::user()->user_avatar }}');" class="avatar avatar--centered"></div>
<div>
<div>
<input type="hidden" name="item[product_id]" value="{{ $product->product_id }}" />
<input type="hidden" name="item[quantity]" class="js-store-item-quantity" value="1" />
<input type="hidden" id="username-form-price" name="item[cost]" value="0" />
{!! Form::label('username', 'New Username') !!}
{!! Form::text('item[extra_info]', '', [
'id' => 'username',
'class' => 'js-username-change-input form-text form-text--username-change',
'placeholder' => 'Requested Username',
'autocomplete' => 'off',
]) !!}
</div>
<input type="hidden" name="item[product_id]" value="{{ $product->product_id }}" />
<input type="hidden" name="item[quantity]" class="js-store-item-quantity" value="1" />
<input type="hidden" id="username-form-price" name="item[cost]" value="0" />
{!! Form::label('username', 'New Username') !!}
{!! Form::text('item[extra_info]', '', [
'id' => 'username',
'class' => 'js-username-change-input form-text form-text--username-change',
'placeholder' => 'Requested Username',
'autocomplete' => 'off',
]) !!}
<em class="store-text store-text--emphasis">
<div id="username-check-status">{{ osu_trans('store.username_change.check') }}</div>
</em>
Expand Down

0 comments on commit 18092a8

Please sign in to comment.