Files
wyczarujprezent.pl/modules/thecheckout/views/templates/front/blocks/login-form.tpl
Jacek Pyziak d39433f0d4 Add new payment and shipping parsers for various integrations
- Implemented Google Pay parser in bongooglepay.js
- Added Buckaroo 3 payment parser in buckaroo3.js
- Introduced DataTrans CW Mastercard parser in datatranscw.js
- Created DataTrans CW Credit Card parser in datatranscw_creditcard.js
- Developed DHL Assistant shipping parser in dhlassistant.js
- Added Estimated Delivery parser in estimateddelivery.js
- Implemented Floapay payment parser in floapay.js
- Created FS Pickup at Store shipping parser in fspickupatstore.js
- Developed Generic Iframe parser in generic_iframe_parser.js
- Added Geodis Officiel shipping parser in geodisofficiel.js
- Implemented Glob Kurier module shipping parser in globkuriermodule.js
- Created Latvija Post Express Pickup Terminal parser in latvijaspastsexpresspastspostterminalslv.js
- Developed LP Shipping parser in lpshipping.js
- Added Mijora Venipak parser in mijoravenipak.js
- Implemented Apple Pay parser in pm_applepay.js
- Created Przelewy24 payment parser in przelewy24.js
- Developed Pshugls shipping parser in pshugls.js
- Added Redsys Insite payment parser in redsysinsite.js
- Implemented Tpay payment parser in tpay.js
- Updated third-party integration documentation for FedEx DotCom
2025-08-04 23:10:27 +02:00

97 lines
4.7 KiB
Smarty

{**
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License 3.0 (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:
* https://opensource.org/licenses/AFL-3.0
* 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 PrestaShop SA
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
* International Registered Trademark & Property of PrestaShop SA
*}
{block name='login_form'}
{if !$z_tc_config->move_login_to_account}<div class="inner-wrapper">{/if}
<div class="offer-login">
<div class="already-account-label">
{l s='Already have an account?' d='Shop.Theme.Customeraccount'}
</div>
<div class="classic-login">
<a class="log-in" href="#" data-link-action="x-offer-login">
{l s='Log in instead!' d='Shop.Theme.Customeraccount'}
</a>
</div>
{if isset($HOOK_OASL_CUSTOM)}
<div class="social-login" data-trans-or="{l s='OR' mod='thecheckout'}">
{$HOOK_OASL_CUSTOM nofilter}
</div>
{elseif ($z_tc_config->social_login_fb || $z_tc_config->social_login_google || $paypal_express_checkout) }
<div class="social-login" data-trans-or="{l s='OR' mod='thecheckout'}">
{if $paypal_express_checkout}
<div id="tc-paypal-express-checkout">{$paypal_express_checkout nofilter}</div>
{/if}
{if $z_tc_config->social_login_fb && $z_tc_config->social_login_fb_app_id && $z_tc_config->social_login_fb_app_secret}
{*<div class="fb-login-button" data-max-rows="1" data-onlogin="fb_checkLoginState();" data-size="medium" data-button-type="login_with" data-show-faces="false" data-auto-logout-link="false" data-use-continue-as="false"></div>*}
<div id="tc-facebook-signin" class="tc-social-login-btn"><span class="social-logo"><span class="facebook-logo"></span></span>{l s='Sign in with Facebook' mod='thecheckout'}</div>
{/if}
{if $z_tc_config->social_login_google && $z_tc_config->social_login_google_client_id && $z_tc_config->social_login_google_client_secret}
{*Google+ login <div class="g-signin2" data-onsuccess="tc_onSignIn"></div>*}
<div id="tc-google-signin"></div>
{/if}
</div>
{/if}
</div>
<form id="login-form" action="{block name='login_form_actionurl'}{$action|escape:'javascript':'UTF-8'}{/block}" method="post">
<section class="form-fields">
{block name='login_form_fields'}
{foreach from=$formFieldsLogin item="field"}
{block name='form_field'}
{include file='module:thecheckout/views/templates/front/_partials/checkout-form-fields.tpl' checkoutSection='login'}
{/block}
{/foreach}
{/block}
</section>
<div class="alert alert-danger" style="display: none" id="errors-login-form"></div>
{block name='login_form_footer'}
<footer class="form-footer text-sm-center clearfix">
<input type="hidden" name="submitLogin" value="1">
{block name='form_buttons'}
<button class="btn btn-primary" data-link-action="x-sign-in" type="button" class="form-control-submit">
{l s='Sign in' d='Shop.Theme.Actions'}
</button>
{/block}
<div class="hidden successful-login">{l s='Login successful, please wait...' mod='thecheckout'}</div>
</footer>
{/block}
<div class="forgot-password">
<a href="{$urls.pages.password|escape:'javascript':'UTF-8'}" rel="nofollow">
{l s='Forgot your password?' d='Shop.Theme.Customeraccount'}
</a>
</div>
</form>
<div class="overlay-email">
<div class="new-customer-email">{l s='New customer or guest checkout? Start with email.' mod='thecheckout'}</div>
<input type="text" name="forced-email" placeholder="{l s='Your email address' d='Shop.Forms.Labels'}">
<button class="btn btn-primary" data-link-action="x-forced-email-continue" type="button" class="form-control-submit">
{l s='Continue >' mod='thecheckout'}
</button>
<div class="error-enter-email" style="display: none">{l s='Please enter your email address to proceed with order.' mod='thecheckout'}</div>
</div>
{if !$z_tc_config->move_login_to_account}</div>{/if}
{/block}