mirror of
https://github.com/espocrm/espocrm.git
synced 2026-06-28 06:56:05 +00:00
install checkboxes
This commit is contained in:
@@ -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>
|
||||
|
||||
|
||||
@@ -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>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user