mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-13 03:27:39 +03:00
Added title attribute to contact name fields
This commit is contained in:
parent
1a5b8819fa
commit
bfe80dcacb
1 changed files with 6 additions and 6 deletions
|
|
@ -127,39 +127,39 @@
|
||||||
<div class="control-group" data-bind="visible: !readOnly() || hasValidName()">
|
<div class="control-group" data-bind="visible: !readOnly() || hasValidName()">
|
||||||
<label class="fontastic iconsize24">👤</label>
|
<label class="fontastic iconsize24">👤</label>
|
||||||
<div>
|
<div>
|
||||||
<div class="property-line">
|
<div class="property-line" data-i18n="[title]CONTACTS/PLACEHOLDER_ENTER_FIRST_NAME">
|
||||||
<span data-bind="text: givenName"></span>
|
<span data-bind="text: givenName"></span>
|
||||||
<input type="text"
|
<input type="text"
|
||||||
autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"
|
autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"
|
||||||
data-bind="value: givenName" data-i18n="[placeholder]CONTACTS/PLACEHOLDER_ENTER_FIRST_NAME">
|
data-bind="value: givenName" data-i18n="[placeholder]CONTACTS/PLACEHOLDER_ENTER_FIRST_NAME">
|
||||||
</div>
|
</div>
|
||||||
<div class="property-line">
|
<div class="property-line" data-i18n="[title]CONTACTS/PLACEHOLDER_ENTER_LAST_NAME">
|
||||||
<span data-bind="text: surName"></span>
|
<span data-bind="text: surName"></span>
|
||||||
<input type="text"
|
<input type="text"
|
||||||
autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"
|
autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"
|
||||||
data-bind="value: surName" data-i18n="[placeholder]CONTACTS/PLACEHOLDER_ENTER_LAST_NAME">
|
data-bind="value: surName" data-i18n="[placeholder]CONTACTS/PLACEHOLDER_ENTER_LAST_NAME">
|
||||||
</div>
|
</div>
|
||||||
<!--
|
<!--
|
||||||
<div class="property-line">
|
<div class="property-line" data-i18n="[title]CONTACTS/PLACEHOLDER_ENTER_MIDDLE_NAME">
|
||||||
<span data-bind="text: middleName"></span>
|
<span data-bind="text: middleName"></span>
|
||||||
<input type="text"
|
<input type="text"
|
||||||
autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"
|
autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"
|
||||||
data-bind="value: middleName" data-i18n="[placeholder]CONTACTS/PLACEHOLDER_ENTER_MIDDLE_NAME">
|
data-bind="value: middleName" data-i18n="[placeholder]CONTACTS/PLACEHOLDER_ENTER_MIDDLE_NAME">
|
||||||
</div>
|
</div>
|
||||||
<div class="property-line">
|
<div class="property-line" data-i18n="[title]CONTACTS/PLACEHOLDER_ENTER_NAME_PREFIX">
|
||||||
<span data-bind="text: namePrefix"></span>
|
<span data-bind="text: namePrefix"></span>
|
||||||
<input type="text"
|
<input type="text"
|
||||||
autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"
|
autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"
|
||||||
data-bind="value: namePrefix" data-i18n="[placeholder]CONTACTS/PLACEHOLDER_ENTER_NAME_PREFIX">
|
data-bind="value: namePrefix" data-i18n="[placeholder]CONTACTS/PLACEHOLDER_ENTER_NAME_PREFIX">
|
||||||
</div>
|
</div>
|
||||||
<div class="property-line">
|
<div class="property-line" data-i18n="[title]CONTACTS/PLACEHOLDER_ENTER_NAME_SUFFIX">
|
||||||
<span data-bind="text: nameSuffix"></span>
|
<span data-bind="text: nameSuffix"></span>
|
||||||
<input type="text"
|
<input type="text"
|
||||||
autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"
|
autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"
|
||||||
data-bind="value: nameSuffix" data-i18n="[placeholder]CONTACTS/PLACEHOLDER_ENTER_NAME_SUFFIX">
|
data-bind="value: nameSuffix" data-i18n="[placeholder]CONTACTS/PLACEHOLDER_ENTER_NAME_SUFFIX">
|
||||||
</div>
|
</div>
|
||||||
-->
|
-->
|
||||||
<div class="property-line" data-bind="visible: null != nickname()">
|
<div class="property-line" data-bind="visible: null != nickname()" data-i18n="[title]CONTACTS/PLACEHOLDER_ENTER_NICK_NAME">
|
||||||
<span data-bind="text: nickname"></span>
|
<span data-bind="text: nickname"></span>
|
||||||
<input type="text"
|
<input type="text"
|
||||||
autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"
|
autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue