654 lines
30 KiB
Smarty
Executable File
654 lines
30 KiB
Smarty
Executable File
{*
|
|
* 2007-2013 PrestaShop
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* This source file is subject to the Academic Free License (AFL 3.0)
|
|
* that is bundled with this package in the file LICENSE.txt.
|
|
* It is also available through the world-wide-web at this URL:
|
|
* http://opensource.org/licenses/afl-3.0.php
|
|
* If you did not receive a copy of the license and are unable to
|
|
* obtain it through the world-wide-web, please send an email
|
|
* to license@prestashop.com so we can send you a copy immediately.
|
|
*
|
|
* DISCLAIMER
|
|
*
|
|
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
|
* versions in the future. If you wish to customize PrestaShop for your
|
|
* needs please refer to http://www.prestashop.com for more information.
|
|
*
|
|
* @author PrestaShop SA <contact@prestashop.com>
|
|
* @copyright 2007-2013 PrestaShop SA
|
|
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
|
* International Registered Trademark & Property of PrestaShop SA
|
|
*}
|
|
|
|
{capture name=path}<a href="{$link->getPageLink('order.php', true)}">{l s='Mon panier'}</a><span class="navigation-pipe">{$navigationPipe}</span>{l s='Identification'}{/capture}
|
|
{include file="$tpl_dir./breadcrumb.tpl"}
|
|
|
|
<script type="text/javascript">
|
|
// <![CDATA[
|
|
var idSelectedCountry = {if isset($smarty.post.id_state)}{$smarty.post.id_state|intval}{else}false{/if};
|
|
var countries = new Array();
|
|
var countriesNeedIDNumber = new Array();
|
|
var countriesNeedZipCode = new Array();
|
|
{if isset($countries)}
|
|
{foreach from=$countries item='country'}
|
|
{if isset($country.states) && $country.contains_states}
|
|
countries[{$country.id_country|intval}] = new Array();
|
|
{foreach from=$country.states item='state' name='states'}
|
|
countries[{$country.id_country|intval}].push({ldelim}'id' : '{$state.id_state|intval}', 'name' : '{$state.name|addslashes}'{rdelim});
|
|
{/foreach}
|
|
{/if}
|
|
{if $country.need_identification_number}
|
|
countriesNeedIDNumber.push({$country.id_country|intval});
|
|
{/if}
|
|
{if isset($country.need_zip_code)}
|
|
countriesNeedZipCode[{$country.id_country|intval}] = {$country.need_zip_code};
|
|
{/if}
|
|
{/foreach}
|
|
{/if}
|
|
$(function(){ldelim}
|
|
$('.id_state option[value={if isset($smarty.post.id_state)}{$smarty.post.id_state|intval}{else}{if isset($address)}{$address->id_state|intval}{/if}{/if}]').attr('selected', true);
|
|
{rdelim});
|
|
//]]>
|
|
var errorPass1="{l s='Votre mot de passe ne doit pas être vide.' js=1}";
|
|
var errorPass2="{l s='Votre mot de passe est différent de la confirmation' js=1}";
|
|
{literal}
|
|
$(document).ready(function() {
|
|
$('#company').blur(function(){
|
|
vat_number();
|
|
});
|
|
vat_number();
|
|
function vat_number()
|
|
{
|
|
if ($('#company').val() != '')
|
|
$('#vat_number').show();
|
|
else
|
|
$('#vat_number').hide();
|
|
}
|
|
|
|
|
|
});
|
|
function checkCreationForm(){
|
|
// var erreurForm=false;
|
|
// if($('#passwd').val()==''){
|
|
// alert(errorPass1);
|
|
// return false;
|
|
// }
|
|
// if($('#passwd').val()!=$('#passwdconfirm').val()){
|
|
// alert(errorPass2);
|
|
// return false;
|
|
// }
|
|
return true;
|
|
}
|
|
function cleanTel(id){
|
|
var valTel=$('#'+id).val();
|
|
var newNum="";
|
|
for(i=0;i<valTel.length;i++){
|
|
if(valTel[i]<10 && valTel[i]!=' '){
|
|
newNum+=valTel[i];
|
|
}
|
|
}
|
|
$('#'+id).attr('value',newNum);
|
|
}
|
|
// function checkFormTel(ids){
|
|
// cleanTel('phone');
|
|
// cleanTel('phone_mobile');
|
|
// }
|
|
// function checkTel(){
|
|
// cleanTel('phone');
|
|
// cleanTel('phone_mobile');
|
|
// }
|
|
{/literal}
|
|
</script>
|
|
<div class="borderGreen auto">
|
|
{if !isset($email_create)}<h1>[{l s='Log in'}]</h1>{else}<h1 style="border-bottom:1px solid black;margin-bottom:20px;padding-bottom:20px;"><span class="g">[</span>{l s='Create an account'}<span class="g">]</span></h1>{/if}
|
|
{*if !isset($back) || $back != 'my-account'}{assign var='current_step' value='login'}{include file="$tpl_dir./order-steps.tpl"}{/if*}
|
|
{include file="$tpl_dir./errors.tpl"}
|
|
{assign var='stateExist' value=false}
|
|
{if !isset($email_create)}
|
|
<script type="text/javascript">
|
|
{literal}
|
|
$(document).ready(function(){
|
|
// Retrocompatibility with 1.4
|
|
if (typeof baseUri === "undefined" && typeof baseDir !== "undefined")
|
|
baseUri = baseDir;
|
|
$('#create-account_form').submit(function(){
|
|
submitFunction();
|
|
return false;
|
|
});
|
|
});
|
|
function submitFunction()
|
|
{
|
|
$('#create_account_error').html('').hide();
|
|
//send the ajax request to the server
|
|
$.ajax({
|
|
type: 'POST',
|
|
url: baseUri,
|
|
async: true,
|
|
cache: false,
|
|
dataType : "json",
|
|
data: {
|
|
controller: 'authentication',
|
|
SubmitCreate: 1,
|
|
ajax: true,
|
|
email_create: $('#email_create').val(),
|
|
back: $('input[name=back]').val(),
|
|
token: token
|
|
},
|
|
success: function(jsonData)
|
|
{
|
|
if (jsonData.hasError)
|
|
{
|
|
var errors = '';
|
|
for(error in jsonData.errors)
|
|
//IE6 bug fix
|
|
if(error != 'indexOf')
|
|
errors += '<li>'+jsonData.errors[error]+'</li>';
|
|
$('#create_account_error').html('<ol>'+errors+'</ol>').show();
|
|
}
|
|
else
|
|
{
|
|
// adding a div to display a transition
|
|
$('#center_column').html('<div id="noSlide">'+$('#center_column').html()+'</div>');
|
|
$('#noSlide').fadeOut('slow', function(){
|
|
$('#noSlide').html(jsonData.page);
|
|
// update the state (when this file is called from AJAX you still need to update the state)
|
|
bindStateInputAndUpdate();
|
|
$(this).fadeIn('slow', function(){
|
|
document.location = '#account-creation';
|
|
});
|
|
});
|
|
}
|
|
},
|
|
error: function(XMLHttpRequest, textStatus, errorThrown)
|
|
{
|
|
alert("TECHNICAL ERROR: unable to load form.\n\nDetails:\nError thrown: " + XMLHttpRequest + "\n" + 'Text status: ' + textStatus);
|
|
}
|
|
});
|
|
}
|
|
|
|
{/literal}
|
|
</script>
|
|
<!--{if isset($authentification_error)}
|
|
<div class="error">
|
|
{if {$authentification_error|@count} == 1}
|
|
<p>{l s='There\'s at least one error'} :</p>
|
|
{else}
|
|
<p>{l s='There are %s errors' sprintf=[$account_error|@count]} :</p>
|
|
{/if}
|
|
<ol>
|
|
{foreach from=$authentification_error item=v}
|
|
<li>{$v}</li>
|
|
{/foreach}
|
|
</ol>
|
|
</div>
|
|
{/if}-->
|
|
|
|
<form action="{$link->getPageLink('authentication', true)}" method="post" id="login_form" class="std cadreAccount ">
|
|
<fieldset>
|
|
<div class="form_content clearfix">
|
|
<h3>{l s='Vous avez un compte'}</h3>
|
|
<p class="text"><input type="email" placeholder="Email" id="email" name="email" value="{if isset($smarty.post.email)}{$smarty.post.email|stripslashes}{/if}" class="inputText209" /><input placeholder="{l s='Votre mot de passe'}" type="password" id="passwd" name="passwd" value="{if isset($smarty.post.passwd)}{$smarty.post.passwd|stripslashes}{/if}" class="inputText209 right" /></p>
|
|
<p class="lost_password"><a href="{$link->getPageLink('password')}">{l s='Mot de passe oublié'}</a></p>
|
|
<p class="submit">
|
|
{if isset($back)}<input type="hidden" class="hidden" name="back" value="{$back|escape:'htmlall':'UTF-8'}" />{/if}
|
|
<input type="submit" id="SubmitLogin" name="SubmitLogin" class="button" value="{l s='S\'identifier'}" />
|
|
</p>
|
|
</div>
|
|
</fieldset>
|
|
</form>
|
|
<form action="{$link->getPageLink('authentication', true)}" method="post" id="create-account_form" class="std cadreAccount right">
|
|
<fieldset>
|
|
<h3>{l s='Vous n\'avez pas de compte'}</h3>
|
|
<div class="form_content clearfix">
|
|
<p class="text" style="line-height:18px">{l s='Créez un compte gratuitement et accédez simplement à un ensemble de services personnalisés. Offres exclusives du Laboratoire Garancia :'} <span class="grey">{l s='Suivi des commandes - Modification de vos coordonnées personnelles - Mailing des dernières tendances et des offres exclusives Garancia - Rédaction d\'avis sur les produits.'}</span></p>
|
|
<p class="hidden">
|
|
<input type="email" placeholder="Email" id="email_create" name="email_create" value="new@garancia.com" class="account_input" /></span>
|
|
</p>
|
|
<p class="submit">
|
|
{if isset($back)}<input type="hidden" class="hidden" name="back" value="{$back|escape:'htmlall':'UTF-8'}" />{/if}
|
|
<input type="submit" id="SubmitCreate" name="SubmitCreate" class="uppercase button" value="{l s='Créez votre compte'}" />
|
|
<input type="hidden" class="hidden" name="SubmitCreate" value="{l s='Create an account'}" />
|
|
</p>
|
|
<div class="error" id="create_account_error" style="display:none"></div>
|
|
</div>
|
|
</fieldset>
|
|
</form>
|
|
|
|
{if isset($inOrderProcess) && $inOrderProcess && $PS_GUEST_CHECKOUT_ENABLED}
|
|
<form action="{$link->getPageLink('authentication', true, NULL, "back=$back")}" method="post" id="new_account_form" class="std clearfix" style="border:0;padding-top:0">
|
|
<fieldset>
|
|
<h3>{l s='Instant checkout'}</h3>
|
|
<div id="opc_account_form" style="display: block; ">
|
|
<!-- Account -->
|
|
<p class="required text">
|
|
<label for="guest_email">{l s='Email address'} <sup>*</sup></label>
|
|
<input type="text" class="text inputText266"id="guest_email" name="guest_email" value="{if isset($smarty.post.guest_email)}{$smarty.post.guest_email}{/if}" />
|
|
</p>
|
|
<p class="radio required">
|
|
<span>{l s='Title'}</span>
|
|
{foreach from=$genders key=k item=gender}
|
|
{if $gender->id==2}<input type="radio" name="id_gender" id="id_gender{$gender->id}" value="{$gender->id}"{if isset($smarty.post.id_gender) && $smarty.post.id_gender == $gender->id} checked="checked"{/if} />
|
|
<label for="id_gender{$gender->id}" class="top">{$gender->name}</label>{/if}
|
|
{/foreach}
|
|
{foreach from=$genders key=k item=gender}
|
|
{if $gender->id==3}<input type="radio" name="id_gender" id="id_gender{$gender->id}" value="{$gender->id}"{if isset($smarty.post.id_gender) && $smarty.post.id_gender == $gender->id} checked="checked"{/if} />
|
|
<label for="id_gender{$gender->id}" class="top">{$gender->name}</label>{/if}
|
|
{/foreach}
|
|
{foreach from=$genders key=k item=gender}
|
|
{if $gender->id==1}<input type="radio" name="id_gender" id="id_gender{$gender->id}" value="{$gender->id}"{if isset($smarty.post.id_gender) && $smarty.post.id_gender == $gender->id} checked="checked"{/if} />
|
|
<label for="id_gender{$gender->id}" class="top">{$gender->name}</label>{/if}
|
|
{/foreach}
|
|
</p>
|
|
<p class="required text">
|
|
<label for="firstname">{l s='First name'} <sup>*</sup></label>
|
|
<input type="text" class="text inputText266"id="firstname" name="firstname" onblur="$('#customer_firstname').val($(this).val());" value="{if isset($smarty.post.firstname)}{$smarty.post.firstname}{/if}" />
|
|
<input type="hidden" class="text" id="customer_firstname" name="customer_firstname" value="{if isset($smarty.post.firstname)}{$smarty.post.firstname}{/if}" />
|
|
</p>
|
|
<p class="required text">
|
|
<label for="lastname">{l s='Last name'} <sup>*</sup></label>
|
|
<input type="text" class="text inputText266"id="lastname" name="lastname" onblur="$('#customer_lastname').val($(this).val());" value="{if isset($smarty.post.lastname)}{$smarty.post.lastname}{/if}" />
|
|
<input type="hidden" class="text" id="customer_lastname" name="customer_lastname" value="{if isset($smarty.post.lastname)}{$smarty.post.lastname}{/if}" />
|
|
</p>
|
|
<p class="select">
|
|
<span>{l s='Date of Birth'}</span>
|
|
<select id="days" name="days">
|
|
<option value="">-</option>
|
|
{foreach from=$days item=day}
|
|
<option value="{$day}" {if ($sl_day == $day)} selected="selected"{/if}>{$day} </option>
|
|
{/foreach}
|
|
</select>
|
|
{*
|
|
{l s='January'}
|
|
{l s='February'}
|
|
{l s='March'}
|
|
{l s='April'}
|
|
{l s='May'}
|
|
{l s='June'}
|
|
{l s='July'}
|
|
{l s='August'}
|
|
{l s='September'}
|
|
{l s='October'}
|
|
{l s='November'}
|
|
{l s='December'}
|
|
*}
|
|
<select id="months" name="months">
|
|
<option value="">-</option>
|
|
{foreach from=$months key=k item=month}
|
|
<option value="{$k}" {if ($sl_month == $k)} selected="selected"{/if}>{l s=$month} </option>
|
|
{/foreach}
|
|
</select>
|
|
<select id="years" name="years">
|
|
<option value="">-</option>
|
|
|
|
{foreach from=$years item=year}
|
|
<option value="{$year}" {if ($sl_year == $year)} selected="selected"{/if}>{$year} </option>
|
|
{/foreach}
|
|
</select>
|
|
</p>
|
|
{if isset($newsletter) && $newsletter}
|
|
<p class="checkbox">
|
|
<input type="checkbox" name="newsletter" id="newsletter" value="1" {if isset($smarty.post.newsletter) && $smarty.post.newsletter == '1'}checked="checked"{/if} />
|
|
<label for="newsletter">{l s='Sign up for our newsletter!'}</label>
|
|
</p>
|
|
<p class="checkbox">
|
|
<input type="checkbox" name="optin" id="optin" value="1" {if isset($smarty.post.optin) && $smarty.post.optin == '1'}checked="checked"{/if} />
|
|
<label for="optin">{l s='Receive special offers from our partners!'}</label>
|
|
</p>
|
|
{/if}
|
|
<h3>{l s='Delivery address'}</h3>
|
|
{foreach from=$dlv_all_fields item=field_name}
|
|
{if $field_name eq "company"}
|
|
<p class="text">
|
|
<label for="company">{l s='Company'}</label>
|
|
<input type="text" class="text inputText266"id="company" name="company" value="{if isset($smarty.post.company)}{$smarty.post.company}{/if}" />
|
|
</p>
|
|
{elseif $field_name eq "vat_number"}
|
|
<div id="vat_number" style="display:none;">
|
|
<p class="text">
|
|
<label for="vat_number">{l s='VAT number'}</label>
|
|
<input type="text" class="text inputText266"name="vat_number" value="{if isset($smarty.post.vat_number)}{$smarty.post.vat_number}{/if}" />
|
|
</p>
|
|
</div>
|
|
{elseif $field_name eq "address1"}
|
|
<p class="required text">
|
|
<label for="address1">{l s='Address'} <sup>*</sup></label>
|
|
<input type="text" class="text inputText266"name="address1" id="address1" value="{if isset($smarty.post.address1)}{$smarty.post.address1}{/if}" />
|
|
</p>
|
|
{elseif $field_name eq "postcode"}
|
|
<p class="required postcode text">
|
|
<label for="postcode">{l s='Zip / Postal Code'} <sup>*</sup></label>
|
|
<input type="text" class="text inputText266"name="postcode" id="postcode" value="{if isset($smarty.post.postcode)}{$smarty.post.postcode}{/if}" onblur="$('#postcode').val($('#postcode').val().toUpperCase());" />
|
|
</p>
|
|
{elseif $field_name eq "city"}
|
|
<p class="required text">
|
|
<label for="city">{l s='City'} <sup>*</sup></label>
|
|
<input type="text" class="text inputText266"name="city" id="city" value="{if isset($smarty.post.city)}{$smarty.post.city}{/if}" />
|
|
</p>
|
|
<!--
|
|
if customer hasn't update his layout address, country has to be verified
|
|
but it's deprecated
|
|
-->
|
|
{elseif $field_name eq "Country:name" || $field_name eq "country"}
|
|
<p class="required select">
|
|
<label for="id_country">{l s='Country'} <sup>*</sup></label>
|
|
<select name="id_country" id="id_country">
|
|
<option value="">-</option>
|
|
{foreach from=$countries item=v}
|
|
<option value="{$v.id_country}" {if ($sl_country == $v.id_country)} selected="selected"{/if}>{$v.name}</option>
|
|
{/foreach}
|
|
</select>
|
|
</p>
|
|
{elseif $field_name eq "State:name"}
|
|
{assign var='stateExist' value=true}
|
|
|
|
<p class="required id_state select">
|
|
<label for="id_state">{l s='State'} <sup>*</sup></label>
|
|
<select name="id_state" id="id_state">
|
|
<option value="">-</option>
|
|
</select>
|
|
</p>
|
|
{elseif $field_name eq "phone"}
|
|
<p class="{if isset($one_phone_at_least) && $one_phone_at_least}required {/if}text">
|
|
<label for="phone">{l s='Phone'}{if isset($one_phone_at_least) && $one_phone_at_least} <sup>*</sup>{/if}</label>
|
|
<input type="text" class="text inputText266"name="phone" id="phone" value="{if isset($smarty.post.phone)}{$smarty.post.phone}{/if}" onkeyup="cleanTel('phone')"/>
|
|
</p>
|
|
{/if}
|
|
{/foreach}
|
|
{if $stateExist eq false}
|
|
<p class="required id_state select">
|
|
<label for="id_state">{l s='State'} <sup>*</sup></label>
|
|
<select name="id_state" id="id_state">
|
|
<option value="">-</option>
|
|
</select>
|
|
</p>
|
|
{/if}
|
|
<input type="hidden" name="alias" id="alias" value="{l s='My address'}" />
|
|
<input type="hidden" name="is_new_customer" id="is_new_customer" value="0" />
|
|
<!-- END Account -->
|
|
</div>
|
|
</fieldset>
|
|
<fieldset class="account_creation dni">
|
|
<h3>{l s='Tax identification'}</h3>
|
|
<p class="required text">
|
|
<label for="dni">{l s='Identification number'}</label>
|
|
<input type="text" class="text inputText266"name="dni" id="dni" value="{if isset($smarty.post.dni)}{$smarty.post.dni}{/if}" />
|
|
<span class="form_info">{l s='DNI / NIF / NIE'}</span>
|
|
</p>
|
|
</fieldset>
|
|
{$HOOK_CREATE_ACCOUNT_FORM}
|
|
<p class="cart_navigation required submit">
|
|
<span><sup>*</sup>{l s='Required field'}</span>
|
|
<input type="hidden" name="display_guest_checkout" value="1" />
|
|
<input type="submit" class="exclusive" name="submitGuestAccount" id="submitGuestAccount" value="{l s='Continue'}" />
|
|
</p>
|
|
</form>
|
|
{/if}
|
|
{else}
|
|
<!--{if isset($account_error)}
|
|
<div class="error">
|
|
{if {$account_error|@count} == 1}
|
|
<p>{l s='There\'s at least one error'} :</p>
|
|
{else}
|
|
<p>{l s='There are %s errors' sprintf=[$account_error|@count]} :</p>
|
|
{/if}
|
|
<ol>
|
|
{foreach from=$account_error item=v}
|
|
<li>{$v}</li>
|
|
{/foreach}
|
|
</ol>
|
|
</div>
|
|
{/if}-->
|
|
<div id="creation_form">
|
|
<form action="{$link->getPageLink('authentication', true)}" method="post" id="account-creation_form" class="std" style="border:0;padding-top:0">
|
|
{$HOOK_CREATE_ACCOUNT_TOP}
|
|
<fieldset class="account_creation">
|
|
<p style="line-height:18px"><b>{l s='Créez un compte gratuitement et accédez simplement à un ensemble de services personnalisés :'}</b>
|
|
<br/>{l s='Suivi des commandes - Modification de vos coordonnées personnelles - Mailing des dernières tendances et des offres exclusives Garancia - Rédaction d\'avis sur les produits.'}</p>
|
|
<p class="radio required">
|
|
{foreach from=$genders key=k item=gender}
|
|
{if $gender->id==2}<input type="radio" required name="id_gender" id="id_gender{$gender->id}" value="{$gender->id}"{if isset($smarty.post.id_gender) && $smarty.post.id_gender == $gender->id} checked="checked"{/if} />
|
|
<label for="id_gender{$gender->id}" class="top">{$gender->name}</label>{/if}
|
|
{/foreach}
|
|
{foreach from=$genders key=k item=gender}
|
|
{if $gender->id==3}<input type="radio" required name="id_gender" id="id_gender{$gender->id}" value="{$gender->id}"{if isset($smarty.post.id_gender) && $smarty.post.id_gender == $gender->id} checked="checked"{/if} />
|
|
<label for="id_gender{$gender->id}" class="top">{$gender->name}</label>{/if}
|
|
{/foreach}
|
|
{foreach from=$genders key=k item=gender}
|
|
{if $gender->id==1}<input type="radio" required name="id_gender" id="id_gender{$gender->id}" value="{$gender->id}"{if isset($smarty.post.id_gender) && $smarty.post.id_gender == $gender->id} checked="checked"{/if} />
|
|
<label for="id_gender{$gender->id}" class="top">{$gender->name}</label>{/if}
|
|
{/foreach}
|
|
</p>
|
|
<p class="required text">
|
|
<label for="customer_lastname">{l s='Last name'} <sup>*</sup></label>
|
|
<input onkeyup="$('#lastname').val(this.value);" required type="text" class="text inputText266"id="customer_lastname" name="customer_lastname" value="{if isset($smarty.post.customer_lastname)}{$smarty.post.customer_lastname}{/if}" />
|
|
</p>
|
|
<p class="required text">
|
|
<label for="customer_firstname">{l s='First name'} <sup>*</sup></label>
|
|
<input onkeyup="$('#firstname').val(this.value);" required type="text" class="text inputText266"id="customer_firstname" name="customer_firstname" value="{if isset($smarty.post.customer_firstname)}{$smarty.post.customer_firstname}{/if}" />
|
|
</p>
|
|
<p class="select">
|
|
<label for="days">{l s='Date of Birth'}</label>
|
|
<select id="days" name="days" class="inputSelect68">
|
|
<option value="">jj</option>
|
|
{foreach from=$days item=day}
|
|
<option value="{$day}" {if ($sl_day == $day)} selected="selected"{/if}>{$day} </option>
|
|
{/foreach}
|
|
</select>
|
|
{*
|
|
{l s='January'}
|
|
{l s='February'}
|
|
{l s='March'}
|
|
{l s='April'}
|
|
{l s='May'}
|
|
{l s='June'}
|
|
{l s='July'}
|
|
{l s='August'}
|
|
{l s='September'}
|
|
{l s='October'}
|
|
{l s='November'}
|
|
{l s='December'}
|
|
*}
|
|
<select id="months" name="months" class="inputSelect68">
|
|
<option value="">mm</option>
|
|
{foreach from=$months key=k item=month}
|
|
<option value="{$k}" {if ($sl_month == $k)} selected="selected"{/if}>{if $k<10}0{/if}{$k}</option>
|
|
{/foreach}
|
|
</select>
|
|
<select id="years" name="years" class="inputSelect68">
|
|
<option value="">yyyy</option>
|
|
{foreach from=$years item=year}
|
|
<option value="{$year}" {if ($sl_year == $year)} selected="selected"{/if}>{$year} </option>
|
|
{/foreach}
|
|
</select>
|
|
</p>
|
|
<p class="required text">
|
|
<label for="email">{l s='Email'} <sup>*</sup></label>
|
|
<input type="text" required class="text inputText266"id="email" name="email" value="" />
|
|
</p>
|
|
<p class="required text">
|
|
<label for="emailconfirm">{l s='Confirmez votre e-mail'} <sup>*</sup></label>
|
|
<input type="text" required class="text inputText266" id="emailconfirm" name="emailconfirm" value="" />
|
|
</p>
|
|
<p class="required text">
|
|
<label for="passwd">{l s='Password'} <sup>*</sup></label>
|
|
<input type="password" required class="text inputText266" name="passwd" id="passwd" />
|
|
</p>
|
|
<p class="required text">
|
|
<label for="passwd">{l s='Confirmez votre mot de passe'} <sup>*</sup></label>
|
|
<input type="password" required class="text inputText266" name="passwdconfirm" id="passwdconfirm" />
|
|
</p>
|
|
<p class="text">
|
|
<label for="phone">{l s='Téléphone fixe'} <sup>*</sup></label>
|
|
<input type="text" class="text inputText266" id="phone" name="phone" value="" onkeyup="cleanTel('phone')"/>
|
|
</p>
|
|
<p class="text">
|
|
<label for="portable">{l s='Téléphone portable'}</label>
|
|
<input type="text" class="text inputText266" id="portable" name="portable" value="" onkeyup="cleanTel('portable')"/>
|
|
</p>
|
|
<p class="select">
|
|
<label for="type_de_peau">{l s='Type de peau'}</label>
|
|
<select name="type_de_peau" class="selectBox selectBox168">
|
|
<option value=""></option>
|
|
<option value="Très sèche">{l s='Très sèche'}</option>
|
|
<option value="Sèche">{l s='Sèche'}</option>
|
|
<option value="Normale">{l s='Normale'}</option>
|
|
<option value="Mixte">{l s='Mixte'}</option>
|
|
<option value="Grasse">{l s='Grasse'}</option>
|
|
</select>
|
|
</p>
|
|
{if $newsletter}
|
|
<p class="checkbox" >
|
|
<input type="checkbox" name="newsletter" id="newsletter" value="1" {if isset($smarty.post.newsletter) AND $smarty.post.newsletter == 1} checked="checked"{/if} />
|
|
<label for="newsletter">{l s='Sign up for our newsletter!'}</label>
|
|
</p>
|
|
{/if}
|
|
<p class="grey">{l s='Conformément aux dispositions de la loi du n°78-17 du 6 janvier 1976, vous disposez d\'un droit d\'accès, de rectification et d\'opposition sur les données nominatives vous concernant.'}</p>
|
|
</fieldset>
|
|
{if $b2b_enable}
|
|
<fieldset class="account_creation">
|
|
<h3>{l s='Your company information'}</h3>
|
|
<p class="text">
|
|
<label for="">{l s='Company'}</label>
|
|
<input type="text" class="text inputText266"id="company" name="company" value="{if isset($smarty.post.company)}{$smarty.post.company}{/if}" />
|
|
</p>
|
|
<p class="text">
|
|
<label for="siret">{l s='SIRET'}</label>
|
|
<input type="text" class="text inputText266"id="siret" name="siret" value="{if isset($smarty.post.siret)}{$smarty.post.siret}{/if}" />
|
|
</p>
|
|
<p class="text">
|
|
<label for="ape">{l s='APE'}</label>
|
|
<input type="text" class="text inputText266"id="ape" name="ape" value="{if isset($smarty.post.ape)}{$smarty.post.ape}{/if}" />
|
|
</p>
|
|
<p class="text">
|
|
<label for="website">{l s='Website'}</label>
|
|
<input type="text" class="text inputText266"id="website" name="website" value="{if isset($smarty.post.website)}{$smarty.post.website}{/if}" />
|
|
</p>
|
|
</fieldset>
|
|
{/if}
|
|
{if isset($PS_REGISTRATION_PROCESS_TYPE) && $PS_REGISTRATION_PROCESS_TYPE}
|
|
<fieldset class="account_creation">
|
|
<h3>{l s='Your address'}</h3>
|
|
{foreach from=$dlv_all_fields item=field_name}
|
|
{if $field_name eq "company"}
|
|
<p class="text">
|
|
<label for="company">{l s='Company'}</label>
|
|
<input type="text" class="text inputText266"id="company" name="company" value="{if isset($smarty.post.company)}{$smarty.post.company}{/if}" />
|
|
</p>
|
|
{elseif $field_name eq "vat_number"}
|
|
<div id="vat_number" style="display:none;">
|
|
<p class="text">
|
|
<label for="vat_number">{l s='VAT number'}</label>
|
|
<input type="text" class="text inputText266"name="vat_number" value="{if isset($smarty.post.vat_number)}{$smarty.post.vat_number}{/if}" />
|
|
</p>
|
|
</div>
|
|
{elseif $field_name eq "firstname"}
|
|
<p class="required text">
|
|
<label for="firstname">{l s='First name'} <sup>*</sup></label>
|
|
<input type="text" class="text inputText266"id="firstname" name="firstname" value="{if isset($smarty.post.firstname)}{$smarty.post.firstname}{/if}" />
|
|
</p>
|
|
{elseif $field_name eq "lastname"}
|
|
<p class="required text">
|
|
<label for="lastname">{l s='Last name'} <sup>*</sup></label>
|
|
<input type="text" class="text inputText266"id="lastname" name="lastname" value="{if isset($smarty.post.lastname)}{$smarty.post.lastname}{/if}" />
|
|
</p>
|
|
{elseif $field_name eq "address1"}
|
|
<p class="required text">
|
|
<label for="address1">{l s='Address'} <sup>*</sup></label>
|
|
<input type="text" class="text inputText266"name="address1" id="address1" value="{if isset($smarty.post.address1)}{$smarty.post.address1}{/if}" />
|
|
<span class="inline-infos">{l s='Street address, P.O. Box, Company name, etc.'}</span>
|
|
</p>
|
|
{elseif $field_name eq "address2"}
|
|
<p class="text">
|
|
<label for="address2">{l s='Address (Line 2)'}</label>
|
|
<input type="text" class="text inputText266"name="address2" id="address2" value="{if isset($smarty.post.address2)}{$smarty.post.address2}{/if}" />
|
|
<span class="inline-infos">{l s='Apartment, suite, unit, building, floor, etc...'}</span>
|
|
</p>
|
|
{elseif $field_name eq "postcode"}
|
|
<p class="required postcode text">
|
|
<label for="postcode">{l s='Zip / Postal Code'} <sup>*</sup></label>
|
|
<input type="text" class="text inputText266"name="postcode" id="postcode" value="{if isset($smarty.post.postcode)}{$smarty.post.postcode}{/if}" onkeyup="$('#postcode').val($('#postcode').val().toUpperCase());" />
|
|
</p>
|
|
{elseif $field_name eq "city"}
|
|
<p class="required text">
|
|
<label for="city">{l s='City'} <sup>*</sup></label>
|
|
<input type="text" class="text inputText266"name="city" id="city" value="{if isset($smarty.post.city)}{$smarty.post.city}{/if}" />
|
|
</p>
|
|
<!--
|
|
if customer hasn't update his layout address, country has to be verified
|
|
but it's deprecated
|
|
-->
|
|
{elseif $field_name eq "Country:name" || $field_name eq "country"}
|
|
<p class="required select">
|
|
<label for="id_country">{l s='Country'} <sup>*</sup></label>
|
|
<select name="id_country" id="id_country">
|
|
<option value="">-</option>
|
|
{foreach from=$countries item=v}
|
|
<option value="{$v.id_country}" {if ($sl_country == $v.id_country)} selected="selected"{/if}>{$v.name}</option>
|
|
{/foreach}
|
|
</select>
|
|
</p>
|
|
{elseif $field_name eq "State:name" || $field_name eq 'state'}
|
|
{assign var='stateExist' value=true}
|
|
<p class="required id_state select">
|
|
<label for="id_state">{l s='State'} <sup>*</sup></label>
|
|
<select name="id_state" id="id_state">
|
|
<option value="">-</option>
|
|
</select>
|
|
</p>
|
|
{/if}
|
|
{/foreach}
|
|
{if $stateExist eq false}
|
|
<p class="required id_state select">
|
|
<label for="id_state">{l s='State'} <sup>*</sup></label>
|
|
<select name="id_state" id="id_state">
|
|
<option value="">-</option>
|
|
</select>
|
|
</p>
|
|
{/if}
|
|
<p class="textarea">
|
|
<label for="other">{l s='Additional information'}</label>
|
|
<textarea name="other" id="other" cols="26" rows="3">{if isset($smarty.post.other)}{$smarty.post.other}{/if}</textarea>
|
|
</p>
|
|
{if isset($one_phone_at_least) && $one_phone_at_least}
|
|
<p class="inline-infos">{l s='You must register at least one phone number.'}</p>
|
|
{/if}
|
|
<p class="text">
|
|
<label for="phone">{l s='Téléphone fixe'} <sup>*</sup></label>
|
|
<input type="text" class="text inputText266"name="phone" id="phone" value="{if isset($smarty.post.phone)}{$smarty.post.phone}{/if}" onkeyup="cleanTel('portable')"/>
|
|
</p>
|
|
<p class="{if isset($one_phone_at_least) && $one_phone_at_least}required {/if} text">
|
|
<label for="phone_mobile">{l s='Téléphone portable'}</label>
|
|
<input type="text" class="text inputText266"name="phone_mobile" id="phone_mobile" value="{if isset($smarty.post.phone_mobile)}{$smarty.post.phone_mobile}{/if}" onkeyup="cleanTel('portable')"/>
|
|
</p>
|
|
<p class="required text" id="address_alias">
|
|
<label for="alias">{l s='Assign an address alias for future reference.'} <sup>*</sup></label>
|
|
<input type="text" class="text inputText266"name="alias" id="alias" value="{if isset($smarty.post.alias)}{$smarty.post.alias}{else}{l s='My address'}{/if}" />
|
|
</p>
|
|
</fieldset>
|
|
<fieldset class="account_creation dni">
|
|
<h3>{l s='Tax identification'}</h3>
|
|
<p class="required text">
|
|
<label for="dni">{l s='Identification number'} <sup>*</sup></label>
|
|
<input type="text" class="text inputText266"name="dni" id="dni" value="{if isset($smarty.post.dni)}{$smarty.post.dni}{/if}" />
|
|
<span class="form_info">{l s='DNI / NIF / NIE'}</span>
|
|
</p>
|
|
</fieldset>
|
|
{/if}
|
|
<script type="text/javascript">{literal}$("p.select select,select.selectBox").selectBox();{/literal}</script>
|
|
{$HOOK_CREATE_ACCOUNT_FORM}
|
|
<p class="cart_navigation required submit">
|
|
<input type="hidden" name="email_create" value="1" />
|
|
<input type="hidden" name="is_new_customer" value="1" />
|
|
{if isset($back)}<input type="hidden" class="hidden" name="back" value="{$back|escape:'htmlall':'UTF-8'}" />{/if}
|
|
<input type="submit" name="submitAccount" id="submitAccount" value="{l s='Register'}" class="exclusive" />
|
|
|
|
</p>
|
|
<p class="grey"><sup>*</sup> {l s='Required field'}</p>
|
|
</form>
|
|
</div>
|
|
{/if}
|
|
</div>
|