install checkboxes

This commit is contained in:
Yuri Kuznetsov
2022-12-07 17:18:07 +02:00
parent 078a445e18
commit 3099ef6dc3
2 changed files with 22 additions and 4 deletions

View File

@@ -13,8 +13,17 @@
</div>
</div>
<div class="cell cell-website form-group">
<input class="btn btn-default" type="checkbox" name="license-agree" id="license-agree" class="input-checkbox" value="1" {if $fields['license-agree'].value}checked="checked"{/if}>
<label class="point-lbl" for="license-agree">{$langs['labels']['I accept the agreement']}</label>
<label class="point-lbl" for="license-agree" style="user-select: none;">
<input
type="checkbox"
name="license-agree"
id="license-agree"
class="input-checkbox form-checkbox"
value="1"
{if $fields['license-agree'].value}checked="checked"{/if}
>
{$langs['labels']['I accept the agreement']}
</label>
</div>
</form>

View File

@@ -28,7 +28,12 @@
{$langs['fields']['Is Shared']}
</label>
<div class="field field-outboundEmailIsShared">
<input type="checkbox" {if $fields['outboundEmailIsShared'].value} checked {/if} name="outboundEmailIsShared" class="main-element">
<input
type="checkbox"
{if $fields['outboundEmailIsShared'].value} checked {/if}
name="outboundEmailIsShared"
class="main-element form-checkbox"
>
</div>
</div>
</div>
@@ -60,7 +65,11 @@
{$langs['fields']['smtpAuth']}
</label>
<div class="field field-smtpAuth">
<input type="checkbox" name="smtpAuth" class="main-element" {if $fields['smtpAuth'].value} checked {/if}>
<input
type="checkbox"
name="smtpAuth"
class="main-element form-checkbox" {if $fields['smtpAuth'].value} checked {/if}
>
</div>
</div>