задача: на форме регистрации добавить компанию и тел
в /Kernel/Output/HTML/Templates/Standard/CustomerLogin.tt добавил:
Код: Выделить всё
<div class="NewLine">
<label class="Mandatory" for="CustomerID"><span class="Marker">*</span> [% Translate("Company") | html %]</label>
<input title="[% Translate("Your Company") | html %]" name="CustomerID" type="text" id="CustomerID" maxlength="150" value="[% Data.UserCustomerID | html %]" class="W50pc Validate_Required"/>
<div id="CustomerIDError" class="TooltipErrorMessage"><p>[% Translate("This field is required.") | html %]</p></div>
</div>
<div class="NewLine">
<label class="Mandatory" for="Phone"><span class="Marker">*</span> [% Translate("Phone") | html %]</label>
<input title="[% Translate("Your Phone") | html %]" name="Phone" type="text" id="Phone" maxlength="150" value="[% Data.UserPhone | html %]" class="W50pc Validate_Required"/>
<div id="PhoneError" class="TooltipErrorMessage"><p>[% Translate("This field is required.") | html %]</p></div>
</div>
1. как сделать для Company чтоб был select из customer_company?
2. как и где это правильно делать, чтоб не потерялось после обновления?
и там еще надо размер(height) <div id="Signup"> поменять
извиняюсь, если уже было - по поиску ничего не нашел