Advertisement
Guest User

Untitled

a guest
Apr 7th, 2014
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 20.03 KB | None | 0 0
  1. <script type="text/javascript" src="templates/orderforms/{$carttpl}/static/app.js"></script>
  2. <script type="text/javascript" src="includes/jscript/statesdropdown.js"></script>
  3. <script type="text/javascript" src="includes/jscript/pwstrength.js"></script>
  4. {literal}
  5. <script language="javascript">
  6. function removeItem(type,num) {
  7.     var response = confirm("{/literal}{$LANG.cartremoveitemconfirm}{literal}");
  8.     if (response) {
  9.         window.location = 'cart.php?a=remove&r='+type+'&i='+num;
  10.     }
  11. }
  12. function emptyCart(type,num) {
  13.     var response = confirm("{/literal}{$LANG.cartemptyconfirm}{literal}");
  14.     if (response) {
  15.         window.location = 'cart.php?a=empty';
  16.     }
  17. }
  18. </script>
  19. {/literal}
  20.  
  21. <div class="page-header">
  22.   <h1>{$LANG.cartreviewcheckout}</h1>
  23.   {if !$loggedin && $currencies}
  24.  {foreach from=$currencies item=curr}
  25.  <a href="cart.php?a=view&currency={$curr.id}"><img src="images/flags/{if $curr.code eq "AUD"}au{elseif $curr.code eq "CAD"}ca{elseif $curr.code eq "EUR"}eu{elseif $curr.code eq "GBP"}gb{elseif $curr.code eq "INR"}in{elseif $curr.code eq "JPY"}jp{elseif $curr.code eq "USD"}us{elseif $curr.code eq "ZAR"}za{else}na{/if}.png" border="0" alt="" /> {$curr.code}</a>
  26.  {/foreach}
  27.  {/if}
  28. </div>
  29.  
  30. {if $errormessage}
  31. <div class="alert alert-danger">{$errormessage|replace:'<li>':' &nbsp;#&nbsp; '} &nbsp;#&nbsp;</div>
  32. {elseif $promotioncode && $rawdiscount eq "0.00"}
  33. <div class="alert alert-danger">{$LANG.promoappliedbutnodiscount}</div>
  34. {/if}
  35.  
  36. {if $bundlewarnings}
  37. <div class="alert alert-warning">
  38.  <strong>{$LANG.bundlereqsnotmet}</strong><br />
  39.  {foreach from=$bundlewarnings item=warning}
  40.  {$warning}<br />
  41.  {/foreach}
  42. </div>
  43. {/if}
  44.  
  45. <form method="post" action="{$smarty.server.PHP_SELF}?a=view" style="font-size:17px">
  46.  <table class="table table-striped">
  47.    <thead>
  48.      <tr>
  49.        <th width="60%">{$LANG.orderdesc}</th>
  50.        <th width="40%">{$LANG.orderprice}</th>
  51.      </tr>
  52.    </thead>
  53.    <tbody>
  54.      {foreach key=num item=product from=$products}
  55.      <tr>
  56.        <td>
  57.          <strong>{$product.productinfo.groupname} - {$product.productinfo.name}</strong>
  58.          {if $product.domain} ({$product.domain}){/if}<br />
  59.          {if $product.configoptions}
  60.          {foreach key=confnum item=configoption from=$product.configoptions}&nbsp;&raquo; {$configoption.name}: {if $configoption.type eq 1 || $configoption.type eq 2}{$configoption.option}{elseif $configoption.type eq 3}{if $configoption.qty}{$LANG.yes}{else}{$LANG.no}{/if}{elseif $configoption.type eq 4}{$configoption.qty} x {$configoption.option}{/if}<br />{/foreach}
  61.           {/if}
  62.           <a href="{$smarty.server.PHP_SELF}?a=confproduct&i={$num}" class="cartedit"><i class="fa fa-pencil"></i> {$LANG.carteditproductconfig}</a> <a href="#" onclick="removeItem('p','{$num}');return false" class="cartremove"><i class="fa fa-trash-o"></i> {$LANG.cartremove}</a>
  63.          
  64.           {if $product.allowqty}
  65.           <input type="text" name="qty[{$num}]" size="3" value="{$product.qty}" />
  66.           <button name="submit" type="submit"><i class="fa fa-refresh"></i></button>
  67.           {/if}
  68.         </td>
  69.        
  70.         <td class="textcenter"><strong>{$product.pricingtext}{if $product.proratadate}<br />({$LANG.orderprorata} {$product.proratadate}){/if}</strong></td>
  71.       </tr>
  72.      
  73.       {foreach key=addonnum item=addon from=$product.addons}
  74.       <tr class="carttableproduct">
  75.         <td><strong>{$LANG.orderaddon}</strong> - {$addon.name}</td><td class="textcenter"><strong>{$addon.pricingtext}</strong></td>
  76.       </tr>
  77.       {/foreach}
  78.     {/foreach}
  79.  
  80. {foreach key=num item=addon from=$addons}
  81. <tr class="carttableproduct"><td>
  82. <strong>{$addon.name}</strong><br />
  83. {$addon.productname}{if $addon.domainname} - {$addon.domainname}<br />{/if}
  84. <a href="#" onclick="removeItem('a','{$num}');return false" class="cartremove">[{$LANG.cartremove}]</a>
  85. </td><td class="textcenter"><strong>{$addon.pricingtext}</strong></td></tr>
  86. {/foreach}
  87.  
  88. {foreach key=num item=domain from=$domains}
  89. <tr class="carttableproduct"><td>
  90. <strong>{if $domain.type eq "register"}{$LANG.orderdomainregistration}{else}{$LANG.orderdomaintransfer}{/if}</strong> - {$domain.domain} - {$domain.regperiod} {$LANG.orderyears}<br />
  91. {if $domain.dnsmanagement}&nbsp;&raquo; {$LANG.domaindnsmanagement}<br />{/if}
  92. {if $domain.emailforwarding}&nbsp;&raquo; {$LANG.domainemailforwarding}<br />{/if}
  93. {if $domain.idprotection}&nbsp;&raquo; {$LANG.domainidprotection}<br />{/if}
  94. <a href="{$smarty.server.PHP_SELF}?a=confdomains" class="cartedit">[{$LANG.cartconfigdomainextras}]</a> <a href="#" onclick="removeItem('d','{$num}');return false" class="cartremove">[{$LANG.cartremove}]</a>
  95. </td><td class="textcenter"><strong>{$domain.price}</strong></td></tr>
  96. {/foreach}
  97.  
  98. {foreach key=num item=domain from=$renewals}
  99. <tr class="carttableproduct"><td>
  100. <strong>{$LANG.domainrenewal}</strong> - {$domain.domain} - {$domain.regperiod} {$LANG.orderyears}<br />
  101. {if $domain.dnsmanagement}&nbsp;&raquo; {$LANG.domaindnsmanagement}<br />{/if}
  102. {if $domain.emailforwarding}&nbsp;&raquo; {$LANG.domainemailforwarding}<br />{/if}
  103. {if $domain.idprotection}&nbsp;&raquo; {$LANG.domainidprotection}<br />{/if}
  104. <a href="#" onclick="removeItem('r','{$num}');return false" class="cartremove">[{$LANG.cartremove}]</a>
  105. </td><td class="textcenter"><strong>{$domain.price}</strong></td></tr>
  106. {/foreach}
  107.  
  108. {if $cartitems==0}
  109. <tr class="clientareatableactive"><td colspan="2" class="textcenter">
  110. <br />
  111. {$LANG.cartempty}
  112. <br /><br />
  113. </td></tr>
  114. {/if}
  115.  
  116.  
  117. {if $promotioncode}
  118. <tr class="promotion"><td class="textright">{$promotiondescription}: &nbsp;</td><td class="textcenter">{$discount}</td></tr>
  119. {/if}
  120. {if $taxrate}
  121. <tr class="subtotal"><td class="textright">{$taxname} @ {$taxrate}%: &nbsp;</td><td class="textcenter">{$taxtotal}</td></tr>
  122. {/if}
  123. {if $taxrate2}
  124. <tr class="subtotal"><td class="textright">{$taxname2} @ {$taxrate2}%: &nbsp;</td><td class="textcenter">{$taxtotal2}</td></tr>
  125. {/if}
  126. <tr><td class="textright">{$LANG.ordertotalduetoday}: &nbsp;</td><td class="textcenter">{$total}</td></tr>
  127. {if $totalrecurringmonthly || $totalrecurringquarterly || $totalrecurringsemiannually || $totalrecurringannually || $totalrecurringbiennially || $totalrecurringtriennially}
  128. <tr class="recurring"><td class="textright">{$LANG.ordertotalrecurring}: &nbsp;</td><td class="textcenter">
  129. {if $totalrecurringmonthly}{$totalrecurringmonthly} {$LANG.orderpaymenttermmonthly}<br />{/if}
  130. {if $totalrecurringquarterly}{$totalrecurringquarterly} {$LANG.orderpaymenttermquarterly}<br />{/if}
  131. {if $totalrecurringsemiannually}{$totalrecurringsemiannually} {$LANG.orderpaymenttermsemiannually}<br />{/if}
  132. {if $totalrecurringannually}{$totalrecurringannually} {$LANG.orderpaymenttermannually}<br />{/if}
  133. {if $totalrecurringbiennially}{$totalrecurringbiennially} {$LANG.orderpaymenttermbiennially}<br />{/if}
  134. {if $totalrecurringtriennially}{$totalrecurringtriennially} {$LANG.orderpaymenttermtriennially}<br />{/if}
  135. </td></tr>
  136. {/if}
  137. </table>
  138.  
  139. </form>
  140.  
  141.  
  142.  
  143. {foreach from=$gatewaysoutput item=gatewayoutput}
  144. <div class="clear"></div>
  145. <div class="cartbuttons">{$gatewayoutput}</div>
  146. {/foreach}
  147.  
  148. {if $cartitems!=0}
  149.  
  150. <form method="post" action="{$smarty.server.PHP_SELF}?a=checkout" id="mainfrm">
  151. <input type="hidden" name="submit" value="true" />
  152. <input type="hidden" name="custtype" id="custtype" value="{$custtype}" />
  153.  
  154. <br /><br />
  155.  
  156. <div class="page-header">
  157.  
  158.   <h1>{$LANG.yourdetails}</h1>
  159.  
  160.   <ul class="pull-right nav nav-tabs" style="margin-top: -32px;">
  161.     <li class="{if !$loggedin && $custtype neq "existing"}active{/if}"><a href="#newcustomer" data-toggle="tab">{$LANG.newcustomer}</a></li>
  162.     <li class="{if $custtype eq "existing" && !$loggedin || $loggedin}active{/if}"><a href="#existingcustomer" data-toggle="tab">{$LANG.existingcustomer}</a></li>
  163.   </ul>
  164.  
  165. </div>
  166.  
  167. <div class="tab-content">
  168.  
  169.   <div class="tab-pane{if !$loggedin && $custtype neq "existing"} active{/if}" id="newcustomer">
  170.  
  171.     <div class="row">
  172.    
  173.       <div class="col-sm-6">
  174.      
  175.         <div class="form-group">
  176.           <label for="firstname">{$LANG.clientareafirstname}</label>
  177.           {if $loggedin}
  178.           <p class="form-control-static">{$clientsdetails.firstname}</p>
  179.           {else}
  180.           <input type="text" name="firstname" tabindex="1" class="form-control" placeholder="{$clientsdetails.firstname}" />
  181.           {/if}
  182.         </div>
  183.        
  184.         <div class="form-group">
  185.           <label for="lastname">{$LANG.clientarealastname}</label>
  186.           {if $loggedin}
  187.           <p class="form-control-static">{$clientsdetails.lastname}</p>
  188.           {else}
  189.           <input type="text" name="lastname" tabindex="2" class="form-control" placeholder="{$clientsdetails.lastname}" />
  190.           {/if}
  191.         </div>
  192.        
  193.        
  194.         {if !$loggedin}
  195.         <div class="row">
  196.        
  197.           <div class="col-sm-6">
  198.             <div class="form-group">
  199.              
  200.               <label for="">{$LANG.clientareapassword}</label>
  201.               <input type="password" name="password" tabindex="5" id="password" class="form-control" placeholder="{$password}" />
  202.             </div>
  203.           </div>
  204.          
  205.           <div class="col-sm-6">
  206.             <div class="form-group">
  207.               <label for="">{$LANG.clientareaconfirmpassword}</label>
  208.               <input type="password" name="password2" tabindex="6" class="form-control" placeholder="{$password2}" />
  209.             </div>
  210.           </div>
  211.         </div>
  212.        
  213.         <div class="form-group">
  214.           <label for="passstrength">{$LANG.pwstrength}</label>
  215.           <div id="pwstrengthbox">{$LANG.pwstrengthenter}</div>
  216.         </div>
  217.         {/if}
  218.        
  219.       </div>
  220.      
  221.       <div class="col-sm-6">
  222.  
  223.         <div class="form-group">
  224.           <label for="">{$LANG.clientareaemail}</label>
  225.           {if $loggedin}
  226.           <p class="form-control-static">{$clientsdetails.email}</p>
  227.           {else}
  228.           <input type="text" name="email" tabindex="4" class="form-control" placeholder="{$clientsdetails.email}" />
  229.           {/if}
  230.         </div>
  231.              
  232.         <div class="form-group">
  233.           <label for="address1">{$LANG.clientareaaddress1}</label>
  234.           {if $loggedin}
  235.           <p class="form-control-static">{$clientsdetails.address1}
  236.           {else}
  237.           <input type="text" name="address1" tabindex="7" class="form-control" placeholder="{$clientsdetails.address1}" />
  238.           {/if}
  239.         </div>      
  240.        
  241.         <div class="form-group">
  242.           <label for="">{$LANG.clientareaphonenumber}</label>
  243.           {if $loggedin}
  244.           <p class="form-control-static">{$clientsdetails.phonenumber}</p>
  245.           {else}
  246.           <input type="text" name="phonenumber" tabindex="13" class="form-control" placeholder="{$clientsdetails.phonenumber}" />
  247.           {/if}
  248.         </div>
  249.       <h4>We'll grab the rest later!</h4>
  250.       </div>
  251.      
  252.     </div>
  253.    
  254.   </div>
  255.  
  256.   <div class="tab-pane{if $custtype eq "existing" && !$loggedin || $loggedin} active{/if}" id="existingcustomer">
  257.    
  258.     <div class="form-group">
  259.       <label for="loginemail">{$LANG.clientareaemail}</label>
  260.       <input type="text" name="loginemail" class="form-control" />
  261.     </div>
  262.    
  263.     <div class="form-group">
  264.       <label for="loginpw">{$LANG.clientareapassword}</label>
  265.       <input type="password" name="loginpw" class="form-control" />
  266.     </div>
  267.    
  268.   </div>
  269.  
  270. </div>
  271.  
  272. {if $customfields || $securityquestions}
  273. {if $securityquestions && !$loggedin}
  274. <div class="form-group">
  275.  <label for="securityquid">{$LANG.clientareasecurityquestion}</label>
  276.  <select name="securityqid" tabindex="14" class="form-control">
  277.    {foreach key=num item=question from=$securityquestions}
  278.    <option value={$question.id}>{$question.question}</option>
  279.    {/foreach}
  280.  </select>
  281. </div>
  282.  
  283. <div class="form-group">
  284.  <label for="securityqans">{$LANG.clientareasecurityanswer}</label>
  285.  <input type="password" name="securityqans" tabindex="15" class="form-control">
  286. </div>
  287. {/if}
  288.  
  289. {foreach key=num item=customfield from=$customfields}
  290. <div class="form-group">
  291.  <label for="">{$customfield.name}</label>
  292.  {$customfield.input|replace:'<input':'<input class="form-control"'}
  293.  <p class="help-block">{$customfield.description}</p>
  294. {/foreach}
  295. {/if}
  296.  
  297. {if $taxenabled && !$loggedin}
  298. <div class="alert alert-warning">{$LANG.carttaxupdateselections} <input type="submit" value="{$LANG.carttaxupdateselectionsupdate}" name="updateonly" /></div>
  299. {/if}
  300.  
  301. {if $domainsinorder}
  302. <div class="page-header">
  303.  <h1>{$LANG.domainregistrantinfo}</h1>
  304. </div>
  305.  
  306.  
  307. <br /><br />
  308.  
  309. <div class="row" id="domaincontactfields">
  310.  <div class="col-sm-6">
  311.    <div class="form-group">
  312.      <label>{$LANG.clientareafirstname}</label>
  313.      <input type="text" name="domaincontactfirstname" class="form-control" placeholder="{$domaincontact.firstname}" />
  314.    </div>
  315.    
  316.    <div class="form-group">
  317.      <label>{$LANG.clientarealastname}</label>
  318.      <input type="text" name="domaincontactlastname" class="form-control" placeholder="{$domaincontact.lastname}" />
  319.    </div>
  320.    
  321.    <div class="form-group">
  322.      <label>{$LANG.clientareacompanyname}</label>
  323.      <input type="text" name="domaincontactcompanyname" class="form-control" placeholder="{$domaincontact.companyname}" />
  324.    </div>
  325.    
  326.    <div class="form-group">
  327.      <label>{$LANG.clientareaemail}</label>
  328.      <input type="text" name="domaincontactemail" class="form-control" placeholder="{$domaincontact.email}" />
  329.    </div>
  330.    
  331.    <div class="form-group">
  332.      <label>{$LANG.clientareaphonenumber}</label>
  333.      <input type="text" name="domaincontactphonenumber" class="form-control" placeholder="{$domaincontact.phonenumber}" />
  334.    </div>
  335.  </div>
  336.  
  337.  
  338.  <div class="col-sm-6">
  339.    <div class="form-group">
  340.      <label>{$LANG.clientareaaddress1}</label>
  341.      <input type="text" name="domaincontactaddress1" class="form-control" placeholder="{$domaincontact.address1}" />
  342.    </div>
  343.    
  344.    <div class="form-group">
  345.      <label>{$LANG.clientareaaddress2}</label>
  346.      <input type="text" name="domaincontactaddress2" class="form-control" placeholder="{$domaincontact.address2}" />
  347.    </div>
  348.    
  349.    <div class="form-group">
  350.      <label>{$LANG.clientareacity}</label>
  351.      <input type="text" name="domaincontactcity" class="form-control" placeholder="{$domaincontact.city}" />
  352.    </div>
  353.    
  354.    <div class="form-group">
  355.      <label>{$LANG.clientareastate}</label>
  356.      <input type="text" name="domaincontactstate" class="form-control" placeholder="{$domaincontact.state}" />
  357.    </div>
  358.    
  359.    <div class="form-group">
  360.      <label>{$LANG.clientareapostcode}</label>
  361.      <input type="text" name="domaincontactpostcode" class="form-control" placeholder="{$domaincontact.postcode}" />
  362.    </div>
  363.    
  364.    <div class="form-group">
  365.      <label>{$LANG.clientareacountry}</label>
  366.      {$domaincontactcountrydropdown|replace:'<select':'<select class="form-control"'}
  367.    </div>
  368.  </div>
  369. </div>
  370. {/if}
  371.  
  372. <div class="row">
  373.  
  374.  <div class="col-sm-6">
  375.    <div class="page-header">
  376.      <h1>{$LANG.orderpromotioncode}</h1>
  377.    </div>
  378.  
  379.    {if $promotioncode}
  380.    {$promotioncode} - {$promotiondescription}<br /><a href="{$smarty.server.PHP_SELF}?a=removepromo">{$LANG.orderdontusepromo}</a>
  381.    {else}
  382.    <div class="input-group">
  383.      <input type="text" name="promocode" size="20" class="form-control" />
  384.      <div class="input-group-btn">
  385.        <button name="submit" type="submit" name="validatepromo" class="btn btn-primary" style="height:60px;">{$LANG.orderpromovalidatebutton}</button>
  386.       </div>
  387.     </div>
  388.     {/if}
  389.   </div>
  390.   <div class="col-sm-6">
  391.  
  392.  
  393.  
  394. <div class="page-header">
  395.   <h1>{$LANG.orderpaymentmethod}</h1>
  396. </div>
  397. {foreach key=num item=gateway from=$gateways}
  398. <div class="radio">
  399.   <label>
  400.     <input type="radio" name="paymentmethod" value="{$gateway.sysname}" id="pgbtn{$num}" onclick="{if $gateway.type eq "CC"}showCCForm(){else}hideCCForm(){/if}"{if $selectedgateway eq $gateway.sysname} checked{/if} />
  401.     {$gateway.name}
  402.   </label>
  403. </div>
  404. {/foreach}
  405. </div>
  406. </div>
  407.  
  408. <div id="ccinputform" class="signupfields{if $selectedgatewaytype neq "CC"} hidden{/if}">
  409. <table width="100%" cellspacing="0" cellpadding="0" class="configtable textleft">
  410. {if $clientsdetails.cclastfour}<tr><td class="fieldlabel"></td><td class="fieldarea"><label><input type="radio" name="ccinfo" value="useexisting" id="useexisting" onclick="useExistingCC()"{if $clientsdetails.cclastfour} checked{else} disabled{/if} /> {$LANG.creditcarduseexisting}{if $clientsdetails.cclastfour} ({$clientsdetails.cclastfour}){/if}</label><br />
  411. <label><input type="radio" name="ccinfo" value="new" id="new" onclick="enterNewCC()"{if !$clientsdetails.cclastfour || $ccinfo eq "new"} checked{/if} /> {$LANG.creditcardenternewcard}</label></td></tr>{else}<input type="hidden" name="ccinfo" value="new" />{/if}
  412. <tr class="newccinfo"{if $clientsdetails.cclastfour && $ccinfo neq "new"} style="display:none;"{/if}><td class="fieldlabel">{$LANG.creditcardcardtype}</td><td class="fieldarea"><select name="cctype">
  413. {foreach key=num item=cardtype from=$acceptedcctypes}
  414. <option{if $cctype eq $cardtype} selected{/if}>{$cardtype}</option>
  415. {/foreach}
  416. </select></td></tr>
  417. <tr class="newccinfo"{if $clientsdetails.cclastfour && $ccinfo neq "new"} style="display:none;"{/if}><td class="fieldlabel">{$LANG.creditcardcardnumber}</td><td class="fieldarea"><input type="text" name="ccnumber" size="30" value="{$ccnumber}" autocomplete="off" /></td></tr>
  418. <tr class="newccinfo"{if $clientsdetails.cclastfour && $ccinfo neq "new"} style="display:none;"{/if}><td class="fieldlabel">{$LANG.creditcardcardexpires}</td><td class="fieldarea"><select name="ccexpirymonth" id="ccexpirymonth" class="newccinfo">
  419. {foreach from=$months item=month}
  420. <option{if $ccexpirymonth eq $month} selected{/if}>{$month}</option>
  421. {/foreach}</select> / <select name="ccexpiryyear" class="newccinfo">
  422. {foreach from=$expiryyears item=year}
  423. <option{if $ccexpiryyear eq $year} selected{/if}>{$year}</option>
  424. {/foreach}
  425. </select></td></tr>
  426. {if $showccissuestart}
  427. <tr class="newccinfo"{if $clientsdetails.cclastfour && $ccinfo neq "new"} style="display:none;"{/if}><td class="fieldlabel">{$LANG.creditcardcardstart}</td><td class="fieldarea"><select name="ccstartmonth" id="ccstartmonth" class="newccinfo">
  428. {foreach from=$months item=month}
  429. <option{if $ccstartmonth eq $month} selected{/if}>{$month}</option>
  430. {/foreach}</select> / <select name="ccstartyear" class="newccinfo">
  431. {foreach from=$startyears item=year}
  432. <option{if $ccstartyear eq $year} selected{/if}>{$year}</option>
  433. {/foreach}
  434. </select></td></tr>
  435. <tr class="newccinfo"{if $clientsdetails.cclastfour && $ccinfo neq "new"} style="display:none;"{/if}><td class="fieldlabel">{$LANG.creditcardcardissuenum}</td><td class="fieldarea"><input type="text" name="ccissuenum" value="{$ccissuenum}" size="5" maxlength="3" /></td></tr>
  436. {/if}
  437. <tr><td class="fieldlabel">{$LANG.creditcardcvvnumber}</td><td class="fieldarea"><input type="text" name="cccvv" value="{$cccvv}" size="5" autocomplete="off" /> <a href="#" onclick="window.open('images/ccv.gif','','width=280,height=200,scrollbars=no,top=100,left=100');return false">{$LANG.creditcardcvvwhere}</a></td></tr>
  438. {if $shownostore}<tr><td class="fieldlabel"><input type="checkbox" name="nostore" id="nostore" /></td><td><label for="nostore">{$LANG.creditcardnostore}</label></td></tr>{/if}
  439. </table>
  440. </div>
  441. <div class="clear"></div>
  442.  
  443. <hr />
  444.  
  445. {if $accepttos}
  446. <div class="radio" style="padding-left: 0px;">
  447.   <label>
  448.     <input type="checkbox" name="accepttos" id="accepttos" />
  449.     {$LANG.ordertosagreement} <a href="{$tosurl}" target="_blank">{$LANG.ordertos}</a>
  450.   </label>
  451. </div>
  452. {/if}
  453.  
  454. <br />
  455.  
  456. <input type="submit" value="{$LANG.completeorder}"{if $cartitems==0} disabled{/if} onclick="this.value='{$LANG.pleasewait}'" class="ordernow btn btn-success" />
  457.  
  458. </form>
  459.  
  460. {else}
  461.  
  462. <br /><br />
  463.  
  464. {/if}
  465.  
  466. <br />
  467. <i class="fa fa-lock"></i> &nbsp;{$LANG.ordersecure} (<strong>{$ipaddress}</strong>) {$LANG.ordersecure2}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement