Advertisement
Guest User

auteh

a guest
Oct 29th, 2012
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.93 KB | None | 0 0
  1. {*
  2. ** Compatibility code for Prestashop older than 1.4.2 using a recent theme
  3. ** Ignore list isn't require here
  4. ** $address exist in every PrestaShop version
  5. *}
  6. {* Will be deleted for 1.5 version and more *}
  7. {* Smarty code compatibility v2 *}
  8. {* If ordered_adr_fields doesn't exist, it's a PrestaShop older than 1.4.2 *}
  9. {if !isset($dlv_all_fields)}
  10. {$dlv_all_fields.0 = 'company'}
  11. {$dlv_all_fields.1 = 'firstname'}
  12. {$dlv_all_fields.2 = 'lastname'}
  13. {$dlv_all_fields.3 = 'address1'}
  14. {$dlv_all_fields.4 = 'address2'}
  15. {$dlv_all_fields.5 = 'postcode'}
  16. {$dlv_all_fields.6 = 'city'}
  17. {$dlv_all_fields.7 = 'country'}
  18. {$dlv_all_fields.8 = 'state'}
  19. {/if}
  20. {capture name=path}{l s='Login'}{/capture}
  21. {include file="$tpl_dir./breadcrumb.tpl"}
  22. <script type="text/javascript">
  23. // <![CDATA[
  24. idSelectedCountry = {if isset($smarty.post.id_state)}{$smarty.post.id_state|intval}{else}false{/if};
  25. countries = new Array();
  26. countriesNeedIDNumber = new Array();
  27. countriesNeedZipCode = new Array();
  28. {if isset($countries)}
  29. {foreach from=$countries item='country'}
  30. {if isset($country.states) && $country.contains_states}
  31. countries[{$country.id_country|intval}] = new Array();
  32. {foreach from=$country.states item='state' name='states'}
  33. countries[{$country.id_country|intval}].push({ldelim}'id' : '{$state.id_state}', 'name' : '{$state.name|escape:'htmlall':'UTF-8'}'{rdelim});
  34. {/foreach}
  35. {/if}
  36. {if $country.need_identification_number}
  37. countriesNeedIDNumber.push({$country.id_country|intval});
  38. {/if}
  39. {if isset($country.need_zip_code)}
  40. countriesNeedZipCode[{$country.id_country|intval}] = {$country.need_zip_code};
  41. {/if}
  42. {/foreach}
  43. {/if}
  44. $(function(){ldelim}
  45. $('.id_state option[value={if isset($smarty.post.id_state)}{$smarty.post.id_state}{else}{if isset($address)}{$address->id_state|escape:'htmlall':'UTF-8'}{/if}{/if}]').attr('selected', 'selected');
  46. {rdelim});
  47. //]]>
  48. {if $vat_management}
  49. {literal}
  50. $(document).ready(function() {
  51. $('#company').blur(function(){
  52. vat_number();
  53. });
  54. vat_number();
  55. function vat_number()
  56. {
  57. if ($('#company').val() != '')
  58. $('#vat_number').show();
  59. else
  60. $('#vat_number').hide();
  61. }
  62. });
  63. {/literal}
  64. {/if}
  65. </script>
  66. <h1>{if !isset($email_create)}{l s='Log in'}{else}{l s='Create your account'}{/if}</h1>
  67. {assign var='current_step' value='login'}
  68. {include file="$tpl_dir./order-steps.tpl"}
  69. {include file="$tpl_dir./errors.tpl"}
  70. {assign var='stateExist' value=false}
  71. {if !isset($email_create)}
  72. <form action="{$link->getPageLink('authentication.php', true)}" method="post" id="create-account_form" class="std">
  73. <fieldset>
  74. <h3>{l s='Create your account'}</h3>
  75. <h4>{l s='Enter your e-mail address to create an account'}.</h4>
  76. <p class="text">
  77. <label for="email_create">{l s='E-mail address'}</label>
  78. <input type="text" id="email_create" name="email_create" value="{if isset($smarty.post.email_create)}{$smarty.post.email_create|escape:'htmlall':'UTF-8'|stripslashes}{/if}" class="account_input" />
  79. </p>
  80. <p class="submit">
  81. {if isset($back)}<input type="hidden" class="hidden" name="back" value="{$back|escape:'htmlall':'UTF-8'}" />{/if}
  82. <input type="submit" id="SubmitCreate" name="SubmitCreate" class="button_large" value="{l s='Create your account'}" />
  83. <input type="hidden" class="hidden" name="SubmitCreate" value="{l s='Create your account'}" />
  84. </p>
  85. </fieldset>
  86. </form>
  87. <form action="{$link->getPageLink('authentication.php', true)}" method="post" id="login_form" class="std">
  88. <fieldset>
  89. <h3>{l s='Already registered ?'}</h3>
  90. <p class="text">
  91. <label for="email">{l s='E-mail address'}</label>
  92. <input type="text" id="email" name="email" value="{if isset($smarty.post.email)}{$smarty.post.email|escape:'htmlall':'UTF-8'|stripslashes}{/if}" class="account_input" />
  93. </p>
  94. <p class="text">
  95. <label for="passwd">{l s='Password'}</label>
  96. <input type="password" id="passwd" name="passwd" value="{if isset($smarty.post.passwd)}{$smarty.post.passwd|escape:'htmlall':'UTF-8'|stripslashes}{/if}" class="account_input" />
  97. </p>
  98. <p class="submit">
  99. {if isset($back)}<input type="hidden" class="hidden" name="back" value="{$back|escape:'htmlall':'UTF-8'}" />{/if}
  100. <input type="submit" id="SubmitLogin" name="SubmitLogin" class="button" value="{l s='Log in'}" />
  101. </p>
  102. <p class="lost_password"><a href="{$link->getPageLink('password.php')}">{l s='Forgot your password?'}</a></p>
  103. </fieldset>
  104. </form>
  105. <div class="clearblock"></div>
  106. {if isset($inOrderProcess) && $inOrderProcess && $PS_GUEST_CHECKOUT_ENABLED}
  107. <form action="{$link->getPageLink('authentication.php', true)}?back={$back}" method="post" id="new_account_form" class="std">
  108. <fieldset>
  109. <h3>{l s='Instant Checkout'}</h3>
  110. <div id="opc_account_form" style="display: block; ">
  111. <!-- Account -->
  112. <p class="required text">
  113. <label for="guest_email">{l s='E-mail address'}</label>
  114. <input type="text" id="guest_email" name="guest_email" value="{if isset($smarty.post.guest_email)}{$smarty.post.guest_email}{/if}">
  115. <sup>*</sup>
  116. </p>
  117. <p class="radio required">
  118. <span>{l s='Title'}</span>
  119. <input type="radio" name="id_gender" id="id_gender1" value="1" {if isset($smarty.post.id_gender) && $smarty.post.id_gender == '1'}checked="checked"{/if}>
  120. <label for="id_gender1" class="top">{l s='Mr.'}</label>
  121. <input type="radio" name="id_gender" id="id_gender2" value="2" {if isset($smarty.post.id_gender) && $smarty.post.id_gender == '2'}checked="checked"{/if}>
  122. <label for="id_gender2" class="top">{l s='Ms.'}</label>
  123. </p>
  124. <p class="required text">
  125. <label for="firstname">{l s='First name'}</label>
  126. <input type="text" id="firstname" name="firstname" onblur="$('#customer_firstname').val($(this).val());" value="{if isset($smarty.post.firstname)}{$smarty.post.firstname}{/if}">
  127. <input type="hidden" id="customer_firstname" name="customer_firstname" value="{if isset($smarty.post.firstname)}{$smarty.post.firstname}{/if}">
  128. <sup>*</sup>
  129. </p>
  130. <p class="required text">
  131. <label for="lastname">{l s='Last name'}</label>
  132. <input type="text" id="lastname" name="lastname" onblur="$('#customer_lastname').val($(this).val());" value="{if isset($smarty.post.lastname)}{$smarty.post.lastname}{/if}">
  133. <input type="hidden" id="customer_lastname" name="customer_lastname" value="{if isset($smarty.post.lastname)}{$smarty.post.lastname}{/if}">
  134. <sup>*</sup>
  135. </p>
  136. <p class="select">
  137. <span>{l s='Date of Birth'}</span>
  138. <select id="days" name="days">
  139. <option value="">-</option>
  140. {foreach from=$days item=day}
  141. <option value="{$day|escape:'htmlall':'UTF-8'}" {if ($sl_day == $day)} selected="selected"{/if}>{$day|escape:'htmlall':'UTF-8'}&nbsp;&nbsp;</option>
  142. {/foreach}
  143. </select>
  144. {*
  145. {l s='January'}
  146. {l s='February'}
  147. {l s='March'}
  148. {l s='April'}
  149. {l s='May'}
  150. {l s='June'}
  151. {l s='July'}
  152. {l s='August'}
  153. {l s='September'}
  154. {l s='October'}
  155. {l s='November'}
  156. {l s='December'}
  157. *}
  158. <select id="months" name="months">
  159. <option value="">-</option>
  160. {foreach from=$months key=k item=month}
  161. <option value="{$k|escape:'htmlall':'UTF-8'}" {if ($sl_month == $k)} selected="selected"{/if}>{l s="$month"}&nbsp;</option>
  162. {/foreach}
  163. </select>
  164. <select id="years" name="years">
  165. <option value="">-</option>
  166. {foreach from=$years item=year}
  167. <option value="{$year|escape:'htmlall':'UTF-8'}" {if ($sl_year == $year)} selected="selected"{/if}>{$year|escape:'htmlall':'UTF-8'}&nbsp;&nbsp;</option>
  168. {/foreach}
  169. </select>
  170. </p>
  171. {if isset($newsletter) && $newsletter}
  172. <p class="checkbox">
  173. <input type="checkbox" name="newsletter" id="newsletter" value="1" {if isset($smarty.post.newsletter) && $smarty.post.newsletter == '1'}checked="checked"{/if}>
  174. <label for="newsletter">{l s='Sign up for our newsletter'}</label>
  175. </p>
  176. <p class="checkbox">
  177. <input type="checkbox" name="optin" id="optin" value="1" {if isset($smarty.post.optin) && $smarty.post.optin == '1'}checked="checked"{/if}>
  178. <label for="optin">{l s='Receive special offers from our partners'}</label>
  179. </p>
  180. {/if}
  181. <h3>{l s='Delivery address'}</h3>
  182. {foreach from=$dlv_all_fields item=field_name}
  183. {if $field_name eq "company"}
  184. <p class="text">
  185. <label for="company">{l s='Company'}</label>
  186. <input type="text" id="company" name="company" value="{if isset($smarty.post.company)}{$smarty.post.company}{/if}" />
  187. </p>
  188. {elseif $field_name eq "vat_number"}
  189. <div id="vat_number" style="display:none;">
  190. <p class="text">
  191. <label for="vat_number">{l s='VAT number'}</label>
  192. <input type="text" name="vat_number" value="{if isset($smarty.post.vat_number)}{$smarty.post.vat_number}{/if}" />
  193. </p>
  194. </div>
  195. {elseif $field_name eq "address1"}
  196. <p class="required text">
  197. <label for="address1">{l s='Address'}</label>
  198. <input type="text" name="address1" id="address1" value="{if isset($smarty.post.address1)}{$smarty.post.address1}{/if}">
  199. <sup>*</sup>
  200. </p>
  201. {elseif $field_name eq "postcode"}
  202. <p class="required postcode text">
  203. <label for="postcode">{l s='Zip / Postal Code'}</label>
  204. <input type="text" name="postcode" id="postcode" value="{if isset($smarty.post.postcode)}{$smarty.post.postcode}{/if}" onblur="$('#postcode').val($('#postcode').val().toUpperCase());">
  205. <sup>*</sup>
  206. </p>
  207. {elseif $field_name eq "city"}
  208. <p class="required text">
  209. <label for="city">{l s='City'}</label>
  210. <input type="text" name="city" id="city" value="{if isset($smarty.post.city)}{$smarty.post.city}{/if}">
  211. <sup>*</sup>
  212. </p>
  213. {elseif $field_name eq "Country:name" || $field_name eq "country"}
  214. <p class="required select">
  215. <label for="id_country">{l s='Country'}</label>
  216. <select name="id_country" id="id_country">
  217. <option value="">-</option>
  218. {foreach from=$countries item=v}
  219. <option value="{$v.id_country}" {if ($sl_country == $v.id_country)} selected="selected"{/if}>{$v.name|escape:'htmlall':'UTF-8'}</option>
  220. {/foreach}
  221. </select>
  222. <sup>*</sup>
  223. </p>
  224. {elseif $field_name eq "State:name" || $field_name eq 'state'}
  225. {assign var='stateExist' value=true}
  226. <p class="required id_state select">
  227. <label for="id_state">{l s='State'}</label>
  228. <select name="id_state" id="id_state">
  229. <option value="">-</option>
  230. </select>
  231. <sup>*</sup>
  232. </p>
  233. {elseif $field_name eq "phone"}
  234. <p class="text required">
  235. <label for="phone">{l s='Phone'}</label>
  236. <input type="text" name="phone" id="phone" value="{if isset($smarty.post.phone)}{$smarty.post.phone}{/if}"> <sup style="color:red;">*</sup>
  237. </p>
  238. {/if}
  239. {/foreach}
  240. {if $stateExist eq false}
  241. <p class="required id_state select">
  242. <label for="id_state">{l s='State'}</label>
  243. <select name="id_state" id="id_state">
  244. <option value="">-</option>
  245. </select>
  246. <sup>*</sup>
  247. </p>
  248. {/if}
  249. <input type="hidden" name="alias" id="alias" value="{l s='My address'}">
  250. <input type="hidden" name="is_new_customer" id="is_new_customer" value="0">
  251. <!-- END Account -->
  252. </div>
  253. </fieldset>
  254. <fieldset class="account_creation dni">
  255. <h3>{l s='Tax identification'}</h3>
  256. <p class="required text">
  257. <label for="dni">{l s='Identification number'}</label>
  258. <input type="text" class="text" name="dni" id="dni" value="{if isset($smarty.post.dni)}{$smarty.post.dni}{/if}" />
  259. <sup>*</sup>
  260. <span class="form_info">{l s='DNI / NIF / NIE'}</span>
  261. </p>
  262. </fieldset>
  263. <p class="required required_desc">
  264. <span><sup>*</sup> {l s='Required field'}</span>
  265. </p>
  266. <p class="submit">
  267. <input type="submit" class="button" name="submitGuestAccount" id="submitGuestAccount" value="{l s='Continue'}">
  268. </p>
  269. </form>
  270. {/if}
  271. {else}
  272. <form action="{$link->getPageLink('authentication.php', true)}" method="post" id="account-creation_form" class="std">
  273. {$HOOK_CREATE_ACCOUNT_TOP}
  274. <fieldset class="account_creation">
  275. <h3>{l s='Your personal information'}</h3>
  276. <p class="radio required">
  277. <span>{l s='Title'}</span>
  278. <input type="radio" name="id_gender" id="id_gender1" value="1" {if isset($smarty.post.id_gender) && $smarty.post.id_gender == 1}checked="checked"{/if} />
  279. <label for="id_gender1" class="top">{l s='Mr.'}</label>
  280. <input type="radio" name="id_gender" id="id_gender2" value="2" {if isset($smarty.post.id_gender) && $smarty.post.id_gender == 2}checked="checked"{/if} />
  281. <label for="id_gender2" class="top">{l s='Ms.'}</label>
  282. </p>
  283. <p class="required text">
  284. <label for="customer_firstname">{l s='First name'}</label>
  285. <input onkeyup="$('#firstname').val(this.value);" type="text" id="customer_firstname" name="customer_firstname" value="{if isset($smarty.post.customer_firstname)}{$smarty.post.customer_firstname}{/if}" />
  286. <sup>*</sup>
  287. </p>
  288. <p class="required text">
  289. <label for="customer_lastname">{l s='Last name'}</label>
  290. <input onkeyup="$('#lastname').val(this.value);" type="text" id="customer_lastname" name="customer_lastname" value="{if isset($smarty.post.customer_lastname)}{$smarty.post.customer_lastname}{/if}" />
  291. <sup>*</sup>
  292. </p>
  293. <p class="required text">
  294. <label for="email">{l s='E-mail'}</label>
  295. <input type="text" id="email" name="email" value="{if isset($smarty.post.email)}{$smarty.post.email}{/if}" />
  296. <sup>*</sup>
  297. </p>
  298. <p class="required password">
  299. <label for="passwd">{l s='Password'}</label>
  300. <input type="password" name="passwd" id="passwd" />
  301. <sup>*</sup>
  302. <span class="form_info">{l s='(5 characters min.)'}</span>
  303. </p>
  304. <p class="select">
  305. <span>{l s='Date of Birth'}</span>
  306. <select id="days" name="days">
  307. <option value="">-</option>
  308. {foreach from=$days item=day}
  309. <option value="{$day|escape:'htmlall':'UTF-8'}" {if ($sl_day == $day)} selected="selected"{/if}>{$day|escape:'htmlall':'UTF-8'}&nbsp;&nbsp;</option>
  310. {/foreach}
  311. </select>
  312. {*
  313. {l s='January'}
  314. {l s='February'}
  315. {l s='March'}
  316. {l s='April'}
  317. {l s='May'}
  318. {l s='June'}
  319. {l s='July'}
  320. {l s='August'}
  321. {l s='September'}
  322. {l s='October'}
  323. {l s='November'}
  324. {l s='December'}
  325. *}
  326. <select id="months" name="months">
  327. <option value="">-</option>
  328. {foreach from=$months key=k item=month}
  329. <option value="{$k|escape:'htmlall':'UTF-8'}" {if ($sl_month == $k)} selected="selected"{/if}>{l s="$month"}&nbsp;</option>
  330. {/foreach}
  331. </select>
  332. <select id="years" name="years">
  333. <option value="">-</option>
  334. {foreach from=$years item=year}
  335. <option value="{$year|escape:'htmlall':'UTF-8'}" {if ($sl_year == $year)} selected="selected"{/if}>{$year|escape:'htmlall':'UTF-8'}&nbsp;&nbsp;</option>
  336. {/foreach}
  337. </select>
  338. </p>
  339. {if isset($newsletter) && $newsletter}
  340. <p class="checkbox" >
  341. <input type="checkbox" name="newsletter" id="newsletter" value="1" {if isset($smarty.post.newsletter) AND $smarty.post.newsletter == 1} checked="checked"{/if} />
  342. <label for="newsletter">{l s='Sign up for our newsletter'}</label>
  343. </p>
  344. <p class="checkbox" >
  345. <input type="checkbox"name="optin" id="optin" value="1" {if isset($smarty.post.optin) AND $smarty.post.optin == 1} checked="checked"{/if} />
  346. <label for="optin">{l s='Receive special offers from our partners'}</label>
  347. </p>
  348. {/if}
  349. </fieldset>
  350. <fieldset class="account_creation">
  351. <h3>{l s='Your address'}</h3>
  352. {foreach from=$dlv_all_fields item=field_name}
  353. {if $field_name eq "company"}
  354. <p class="text">
  355. <label for="company">{l s='Company'}</label>
  356. <input type="text" id="company" name="company" value="{if isset($smarty.post.company)}{$smarty.post.company}{/if}" />
  357. </p>
  358. {elseif $field_name eq "vat_number"}
  359. <div id="vat_number" style="display:none;">
  360. <p class="text">
  361. <label for="vat_number">{l s='VAT number'}</label>
  362. <input type="text" name="vat_number" value="{if isset($smarty.post.vat_number)}{$smarty.post.vat_number}{/if}" />
  363. </p>
  364. </div>
  365. {elseif $field_name eq "firstname"}
  366. <p class="required text">
  367. <label for="firstname">{l s='First name'}</label>
  368. <input type="text" id="firstname" name="firstname" value="{if isset($smarty.post.firstname)}{$smarty.post.firstname}{/if}" />
  369. <sup>*</sup>
  370. </p>
  371. {elseif $field_name eq "lastname"}
  372. <p class="required text">
  373. <label for="lastname">{l s='Last name'}</label>
  374. <input type="text" id="lastname" name="lastname" value="{if isset($smarty.post.lastname)}{$smarty.post.lastname}{/if}" />
  375. <sup>*</sup>
  376. </p>
  377. {elseif $field_name eq "address1"}
  378. <p class="required text">
  379. <label for="address1">{l s='Address'}</label>
  380. <input type="text" name="address1" id="address1" value="{if isset($smarty.post.address1)}{$smarty.post.address1}{/if}" />
  381. <sup>*</sup>
  382. <span class="inline-infos">{l s='Street address, P.O. box, company name, c/o'}</span>
  383. </p>
  384. {elseif $field_name eq "address2"}
  385. <p class="text">
  386. <label for="address2">{l s='Address (Line 2)'}</label>
  387. <input type="text" name="address2" id="address2" value="{if isset($smarty.post.address2)}{$smarty.post.address2}{/if}" />
  388. <span class="inline-infos">{l s='Apartment, suite, unit, building, floor, etc.'}</span>
  389. </p>
  390. {elseif $field_name eq "postcode"}
  391. <p class="required postcode text">
  392. <label for="postcode">{l s='Zip / Postal Code'}</label>
  393. <input type="text" name="postcode" id="postcode" value="{if isset($smarty.post.postcode)}{$smarty.post.postcode}{/if}" onkeyup="$('#postcode').val($('#postcode').val().toUpperCase());" />
  394. <sup>*</sup>
  395. </p>
  396. {elseif $field_name eq "city"}
  397. <p class="required text">
  398. <label for="city">{l s='City'}</label>
  399. <input type="text" name="city" id="city" value="{if isset($smarty.post.city)}{$smarty.post.city}{/if}" />
  400. <sup>*</sup>
  401. </p>
  402. {elseif $field_name eq "Country:name" || $field_name eq "country"}
  403. <p class="required select">
  404. <label for="id_country">{l s='Country'}</label>
  405. <select name="id_country" id="id_country">
  406. <option value="">-</option>
  407. {foreach from=$countries item=v}
  408. <option value="{$v.id_country}" {if ($sl_country == $v.id_country)} selected="selected"{/if}>{$v.name|escape:'htmlall':'UTF-8'}</option>
  409. {/foreach}
  410. </select>
  411. <sup>*</sup>
  412. </p>
  413. {elseif $field_name eq "State:name" || $field_name eq 'state'}
  414. {assign var='stateExist' value=true}
  415. <p class="required id_state select">
  416. <label for="id_state">{l s='State'}</label>
  417. <select name="id_state" id="id_state">
  418. <option value="">-</option>
  419. </select>
  420. <sup>*</sup>
  421. </p>
  422. {/if}
  423. {/foreach}
  424. {if $stateExist eq false}
  425. <p class="required id_state select">
  426. <label for="id_state">{l s='State'}</label>
  427. <select name="id_state" id="id_state">
  428. <option value="">-</option>
  429. </select>
  430. <sup>*</sup>
  431. </p>
  432. {/if}
  433. <p class="textarea">
  434. <label for="other">{l s='Additional information'}</label>
  435. <textarea name="other" id="other" cols="26" rows="3">{if isset($smarty.post.other)}{$smarty.post.other}{/if}</textarea>
  436. </p>
  437. <p class="required">{l s='You must register at least one phone number'} <sup>*</sup></p>
  438. <p class="text">
  439. <label for="phone">{l s='Home phone'}</label>
  440. <input type="text" name="phone" id="phone" value="{if isset($smarty.post.phone)}{$smarty.post.phone}{/if}" />
  441. </p>
  442. <p class="text">
  443. <label for="phone_mobile">{l s='Mobile phone'}</label>
  444. <input type="text" name="phone_mobile" id="phone_mobile" value="{if isset($smarty.post.phone_mobile)}{$smarty.post.phone_mobile}{/if}" />
  445. </p>
  446. <p class="required text" id="address_alias">
  447. <label for="alias">{l s='Assign an address title for future reference'}</label>
  448. <input type="text" name="alias" id="alias" value="{if isset($smarty.post.alias)}{$smarty.post.alias}{else}{l s='My address'}{/if}" />
  449. <sup>*</sup>
  450. </p>
  451. </fieldset>
  452. <fieldset class="account_creation dni">
  453. <h3>{l s='Tax identification'}</h3>
  454. <p class="required text">
  455. <label for="dni">{l s='Identification number'}</label>
  456. <input type="text" name="dni" id="dni" value="{if isset($smarty.post.dni)}{$smarty.post.dni}{/if}" />
  457. <sup>*</sup>
  458. <span class="form_info">{l s='DNI / NIF / NIE'}</span>
  459. </p>
  460. </fieldset>
  461. {$HOOK_CREATE_ACCOUNT_FORM}
  462. <p class="required required_desc">
  463. <span><sup>*</sup>{l s='Required field'}</span>
  464. </p>
  465. <p class="submit">
  466. <input type="hidden" name="email_create" value="1" />
  467. <input type="hidden" name="is_new_customer" value="1" />
  468. {if isset($back)}<input type="hidden" class="hidden" name="back" value="{$back|escape:'htmlall':'UTF-8'}" />{/if}
  469. <input type="submit" name="submitAccount" id="submitAccount" value="{l s='Register'}" class="exclusive" />
  470. </p>
  471. </form>
  472. {/if}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement