first commit
This commit is contained in:
1688
apps/frontend/modules/stUser/actions/actions.class.php
Normal file
1688
apps/frontend/modules/stUser/actions/actions.class.php
Normal file
File diff suppressed because it is too large
Load Diff
137
apps/frontend/modules/stUser/actions/components.class.php
Normal file
137
apps/frontend/modules/stUser/actions/components.class.php
Normal file
@@ -0,0 +1,137 @@
|
||||
<?php
|
||||
/**
|
||||
* SOTESHOP/stUser
|
||||
*
|
||||
* Ten plik należy do aplikacji stUser opartej na licencji (Professional License SOTE).
|
||||
* Nie zmieniaj tego pliku, jeśli chcesz korzystać z automatycznych aktualizacji oprogramowania.
|
||||
* Jeśli chcesz wprowadzać swoje modyfikacje do programu, zapoznaj się z dokumentacją, jak zmieniać
|
||||
* oprogramowanie bez zmiany kodu bazowego http://www.sote.pl/modifications
|
||||
*
|
||||
* @package stUser
|
||||
* @subpackage actions
|
||||
* @copyright SOTE (www.sote.pl)
|
||||
* @license http://www.sote.pl/license/sote (Professional License SOTE)
|
||||
* @version $Id: components.class.php 617 2009-04-09 13:02:31Z michal $
|
||||
* @author Bartosz Alejski <bartosz.alejski@sote.pl>
|
||||
*/
|
||||
|
||||
/**
|
||||
* Klasa przechowuje metody komponentu użytkownika.
|
||||
*
|
||||
* @author Bartosz Alejski <bartosz.alejski@sote.pl>
|
||||
*
|
||||
* @package stUser
|
||||
* @subpackage actions
|
||||
*/
|
||||
class stUserComponents extends sfComponents
|
||||
{
|
||||
/**
|
||||
* Zwraca aktualnego użytkownika
|
||||
*
|
||||
* @return stUser
|
||||
*/
|
||||
public function getUser()
|
||||
{
|
||||
return parent::getUser();
|
||||
}
|
||||
/**
|
||||
* Wywołanie komponentu sprawdzającego status zalogowania użytkowniak
|
||||
*/
|
||||
public function executeLoginStatus()
|
||||
{
|
||||
|
||||
$this->smarty = new stSmarty('stUser');
|
||||
|
||||
$this->is_authenticated = false;
|
||||
|
||||
if($this->getUser()->isAuthenticated())
|
||||
{
|
||||
|
||||
$content = $this->getUser()->getAttribute('user_id', null, 'sfGuardSecurityUser');
|
||||
if ($content)
|
||||
{
|
||||
$c = new Criteria();
|
||||
$c->add(sfGuardUserPeer::ID, $this->getUser()->getAttribute('user_id', null, 'sfGuardSecurityUser'));
|
||||
$user = sfGuardUserPeer::doSelectOne($c);
|
||||
|
||||
if(is_object($user))
|
||||
{
|
||||
$this->is_authenticated = true;
|
||||
|
||||
$login = $user->getUsername();
|
||||
|
||||
$login_username = explode("@", $login);
|
||||
|
||||
$this->username = $login_username[0];
|
||||
|
||||
$password = $user->getPassword();
|
||||
|
||||
$config_points = stConfig::getInstance('stPointsBackend');
|
||||
$config_points->setCulture(sfContext::getInstance()->getUser()->getCulture());
|
||||
|
||||
$this->points_value = stPoints::getLoginStatusPoints();
|
||||
$this->points_show = $config_points->get('points_show_in_login_status');
|
||||
$this->points_shortcut = $config_points->get('points_shortcut', null, true);
|
||||
$this->points_system_is_active = stPoints::isPointsSystemActive();
|
||||
|
||||
|
||||
if($this->getUser()->checkPassword("anonymous"))
|
||||
{
|
||||
$this->account_type = "annonymous";
|
||||
}
|
||||
else
|
||||
{
|
||||
$this->account_type = "full";
|
||||
}
|
||||
|
||||
if($user->getExternalAccount())
|
||||
{
|
||||
$this->externalAccount = $user->getExternalAccount();
|
||||
$this->account_type = "external";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public function executeBasketLoginForm()
|
||||
{
|
||||
$this->smarty = new stSmarty('stUser');
|
||||
|
||||
$user_config = stConfig::getInstance(sfContext::getInstance(), 'stUser');
|
||||
$this->login_google_on = $user_config->get('google_auth_on');
|
||||
|
||||
if ($this->getRequest()->getMethod() == sfRequest::POST && $this->hasRequestParameter('submit_login'))
|
||||
{
|
||||
$this->login_show_error = 1;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public function executeAjaxLoginModal()
|
||||
{
|
||||
$this->smarty = new stSmarty('stUser');
|
||||
|
||||
}
|
||||
|
||||
public function executeUserSidebar()
|
||||
{
|
||||
$config_observe = stConfig::getInstance(sfContext::getInstance(), 'stProductObserveBackend');
|
||||
$config_recently = stConfig::getInstance(sfContext::getInstance(), 'stRecentlyViewedProductsBackend');
|
||||
|
||||
if($config_observe->get('enabled')!=1 && $config_recently->get('enabled')!=1){
|
||||
return sfView::NONE;
|
||||
}
|
||||
|
||||
if($config_observe->get('enabled')!=1 && $config_recently->get('show_in_sidebar')!=1){
|
||||
return sfView::NONE;
|
||||
}
|
||||
|
||||
|
||||
$this->smarty = new stSmarty('stUser');
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
12
apps/frontend/modules/stUser/config/config.php
Normal file
12
apps/frontend/modules/stUser/config/config.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
stPluginHelper::addRouting('stUserData', '/user_data/:action/*', 'stUserData', 'userPanel', 'frontend');
|
||||
stPluginHelper::addRouting('stUser', '/user/:action/*', 'stUser', 'index', 'frontend');
|
||||
stPluginHelper::addRouting('stConfirmForUser', '/user/emailConfirm/:user/:hash_code/:language', 'stUser', 'emailConfirm', 'frontend', array('confirm' => true));
|
||||
stPluginHelper::addRouting('stConfirmDeleteForUser', '/user/deleteAccount/:user/:hash_code/:language', 'stUser', 'deleteAccount', 'frontend', array('confirm' => true));
|
||||
stPluginHelper::addRouting('stChangePassForUser', '/user/createNewPassword/:hash_code/:secure_token', 'stUser', 'createNewPassword', 'frontend', array('confirm' => true));
|
||||
stPluginHelper::addRouting('stGoToUser', '/user/edit/id/:user', 'stUser', 'edit', 'frontend');
|
||||
stPluginHelper::addRouting('stGoToLogin', '/user/loginUser', 'stUser', 'loginUser', 'frontend');
|
||||
|
||||
if (SF_APP == 'frontend'){
|
||||
$dispatcher->connect('smarty.slot.append', array('stUserListener', 'append'));
|
||||
}
|
||||
4
apps/frontend/modules/stUser/config/layout/default.yml
Normal file
4
apps/frontend/modules/stUser/config/layout/default.yml
Normal file
@@ -0,0 +1,4 @@
|
||||
all:
|
||||
.layout:
|
||||
name: layout3
|
||||
|
||||
4
apps/frontend/modules/stUser/config/layout/default2.yml
Normal file
4
apps/frontend/modules/stUser/config/layout/default2.yml
Normal file
@@ -0,0 +1,4 @@
|
||||
all:
|
||||
.layout:
|
||||
name: layout3
|
||||
|
||||
@@ -0,0 +1,96 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the symfony package.
|
||||
* (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
/**
|
||||
* SOTESHOP/stUser
|
||||
*
|
||||
* Ten plik należy do aplikacji stUser opartej na licencji (Professional License SOTE).
|
||||
* Nie zmieniaj tego pliku, jeśli chcesz korzystać z automatycznych aktualizacji oprogramowania.
|
||||
* Jeśli chcesz wprowadzać swoje modyfikacje do programu, zapoznaj się z dokumentacją, jak zmieniać
|
||||
* oprogramowanie bez zmiany kodu bazowego http://www.sote.pl/modifications
|
||||
*
|
||||
* @package stUser
|
||||
* @subpackage libs
|
||||
* @copyright SOTE (www.sote.pl)
|
||||
* @license http://www.sote.pl/license/sote (Professional License SOTE)
|
||||
* @version $Id: loginUserValidator.class.php 617 2009-04-09 13:02:31Z michal $
|
||||
*/
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
|
||||
*
|
||||
*
|
||||
*
|
||||
* @package stUser
|
||||
* @subpackage libs
|
||||
*/
|
||||
class stLoginUserValidator extends sfValidator
|
||||
{
|
||||
public function initialize($context, $parameters = null)
|
||||
{
|
||||
// initialize parent
|
||||
parent::initialize($context);
|
||||
|
||||
// set defaults
|
||||
$this->getParameterHolder()->set('username_error', 'Zły login lub hasło.');
|
||||
$this->getParameterHolder()->set('password_error', 'Zły login lub hasło.');
|
||||
$this->getParameterHolder()->set('password_field', 'password');
|
||||
$this->getParameterHolder()->set('remember_field', 'remember');
|
||||
$this->getParameterHolder()->set('permision_error', 'Nie masz odpowiednich uprawnień');
|
||||
|
||||
|
||||
$this->getParameterHolder()->add($parameters);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
public function execute(&$value, &$error)
|
||||
{
|
||||
$username = $value;
|
||||
$password = $this->getContext()->getRequest()->getParameter('user[password]');
|
||||
|
||||
if($password=="anonymous")
|
||||
{
|
||||
$error = $this->getParameterHolder()->get('password_error');
|
||||
return false;
|
||||
}
|
||||
|
||||
$c = new Criteria();
|
||||
$c->add(sfGuardUserPeer::USERNAME , $username);
|
||||
$user = sfGuardUserPeer::doSelectOne($c);
|
||||
|
||||
if(!$user)
|
||||
{
|
||||
$error = $this->getParameterHolder()->get('username_error');
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
$c = new Criteria();
|
||||
$c->add(sfGuardUserGroupPeer::USER_ID , $user->getId());
|
||||
$c->add(sfGuardUserGroupPeer::GROUP_ID , 2);
|
||||
$group = sfGuardUserGroupPeer::doSelectOne($c);
|
||||
|
||||
if(!$group)
|
||||
{
|
||||
$error = $this->getParameterHolder()->get('permision_error');
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
if ($this->getContext()->getUser()->loginUser($username, $password))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
$error = $this->getParameterHolder()->get('username_error');
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,68 @@
|
||||
<?php
|
||||
/**
|
||||
* SOTESHOP/stUser
|
||||
*
|
||||
* Ten plik należy do aplikacji stUser opartej na licencji (Professional License SOTE).
|
||||
* Nie zmieniaj tego pliku, jeśli chcesz korzystać z automatycznych aktualizacji oprogramowania.
|
||||
* Jeśli chcesz wprowadzać swoje modyfikacje do programu, zapoznaj się z dokumentacją, jak zmieniać
|
||||
* oprogramowanie bez zmiany kodu bazowego http://www.sote.pl/modifications
|
||||
*
|
||||
* @package stUser
|
||||
* @subpackage libs
|
||||
* @copyright SOTE (www.sote.pl)
|
||||
* @license http://www.sote.pl/license/sote (Professional License SOTE)
|
||||
* @version $Id: stEditPasswordValidator.class.php 617 2009-04-09 13:02:31Z michal $
|
||||
* @author Bartosz Alejski <bartosz.alejski@sote.pl>
|
||||
*/
|
||||
|
||||
/**
|
||||
* Klasa przechowuje metody walidacji formularzy użytkownika.
|
||||
*
|
||||
* @author Bartosz Alejski <bartosz.alejski@sote.pl>
|
||||
*
|
||||
* @package stUser
|
||||
* @subpackage libs
|
||||
*/
|
||||
class stEditPasswordValidator extends sfValidator
|
||||
{
|
||||
/**
|
||||
* Zmiana hasła użytkownika.
|
||||
*
|
||||
* @param string $value
|
||||
* @param integer $error
|
||||
* @return true
|
||||
*/
|
||||
public function execute (&$value, &$error)
|
||||
{
|
||||
if ($this->getContext()->getUser()->checkPassword($this->getParameter('user[oldpassword]')) == false)
|
||||
{
|
||||
$error = $this->getParameter('error_message');
|
||||
return false;
|
||||
}
|
||||
else
|
||||
{
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Inicjalizacja walidacji.
|
||||
*
|
||||
* @param string $context
|
||||
* @param string $parameters
|
||||
* @return true
|
||||
*/
|
||||
public function initialize ($context, $parameters = null)
|
||||
{
|
||||
// Initialize parent
|
||||
parent::initialize($context);
|
||||
|
||||
$user = $context->getRequest()->getParameter('user');
|
||||
|
||||
$this->setParameter('user', $user);
|
||||
|
||||
$this->getParameterHolder()->add($parameters);
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
28
apps/frontend/modules/stUser/templates/_ajaxLoginModal.php
Normal file
28
apps/frontend/modules/stUser/templates/_ajaxLoginModal.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
$smarty->display('user_ajax_login_modal.html');
|
||||
|
||||
?>
|
||||
|
||||
<script type="text/javascript">
|
||||
jQuery(function ($) {
|
||||
$(document).ready(function() {
|
||||
|
||||
$( "#ajax-login-button" ).click(function() {
|
||||
showAjaxLoginFormModal();
|
||||
});
|
||||
|
||||
|
||||
function showAjaxLoginFormModal()
|
||||
{
|
||||
$('#ajax-login-form-modal').modal('show');
|
||||
|
||||
$.get('<?php echo url_for('stUser/ajaxLoginForm') ?>', function(data) {
|
||||
|
||||
$('#ajax-login-form').html(data);
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
});
|
||||
});
|
||||
</script>
|
||||
37
apps/frontend/modules/stUser/templates/_basketLoginForm.php
Normal file
37
apps/frontend/modules/stUser/templates/_basketLoginForm.php
Normal file
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
use_helper('Validation', 'stUrl');
|
||||
st_theme_use_stylesheet('stUser.css');
|
||||
$smarty->assign('form_start', tag('form', array('class' => 'st_form_ver6', 'action' => st_secure_url_for('stUser/LoginUserBasket'), 'method' => 'post'), true));
|
||||
|
||||
$smarty->assign('remind_password', link_to(__('Przypomnij hasło'), 'stUser/remindPassword'));
|
||||
|
||||
$smarty->assign('create_account', link_to(__('Zarejestruj się'), 'stUser/createAccount?basketReturn=1'));
|
||||
|
||||
$smarty->assign('error_email', form_error('user[email]', array('suffix'=>'', 'prefix'=>'', 'class'=>'st_error')));
|
||||
$smarty->assign('label_email', label_for('st_form-user_basket-email',__('E-mail (login)')));
|
||||
$smarty->assign('email', input_tag('user[email]', $sf_params->get('user[email]'), array('id'=>'st_form-user_basket-email','class'=>form_has_error('user{email}') ? 'st_form-error' : '')));
|
||||
|
||||
$smarty->assign('error_password', form_error('user[password]', array('suffix'=>'', 'prefix'=>'', 'class'=>'st_error')));
|
||||
$smarty->assign('label_password', label_for('st_form-user_basket-password',__('Hasło')));
|
||||
$smarty->assign('password', input_password_tag('user[password]', $sf_params->get('user[password]'), array('id'=>'st_form-user_basket-password','class'=>form_has_error('user{email}') ? 'st_form-error' : '')));
|
||||
|
||||
$smarty->assign('error_email', $sf_request->getError('user{email}'));
|
||||
$smarty->assign('error_password', $sf_request->getError('user{password}'));
|
||||
|
||||
$smarty->assign('login_submit', submit_tag(__('Zaloguj'), array('name'=>'submit_login')));
|
||||
|
||||
$smarty->assign('login_show_error', $login_show_error);
|
||||
|
||||
$smarty->assign('login_google_on', $login_google_on);
|
||||
|
||||
$smarty->assign('google_url', stGooglePlusAccess::authUser('basket'));
|
||||
|
||||
$smarty->assign('form_google_start', tag('form', array('class' => 'st_form_ver6', 'action' => st_secure_url_for('stUser/googleSingIn'), 'method' => 'post'), true));
|
||||
|
||||
if(stTheme::is_responsive()):
|
||||
$smarty->assign('email', input_tag('user[email]', $sf_params->get('user[email]'), array('id'=>'st_form-user_basket-email', 'placeholder'=> __("E-mail"), 'maxlength'=>'255', 'class'=>'form-control')));
|
||||
$smarty->assign('password', input_password_tag('user[password]', $sf_params->get('user[password]'), array('id'=>'st_form-user_basket-password', 'placeholder'=> __("Hasło"), 'maxlength'=>'255', 'class'=>'form-control')));
|
||||
endif;
|
||||
|
||||
$smarty->display('user_basket_login.html');
|
||||
?>
|
||||
22
apps/frontend/modules/stUser/templates/_loginStatus.php
Normal file
22
apps/frontend/modules/stUser/templates/_loginStatus.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
use_helper('Validation', 'stUrl');
|
||||
st_theme_use_stylesheet('stUser.css');
|
||||
|
||||
$smarty->assign('is_authenticated', $is_authenticated);
|
||||
$smarty->assign('my_account', st_secure_link_to(__('Moje konto'), 'stUser/loginUser'));
|
||||
|
||||
if ($is_authenticated)
|
||||
{
|
||||
$smarty->assign('account_type', $account_type);
|
||||
$smarty->assign('username', $username);
|
||||
$smarty->assign('points', st_secure_link_to(" / ".$points_value." ".$points_shortcut, 'stPointsFrontend/list'));
|
||||
$smarty->assign('logout', st_secure_link_to(__('Wyloguj'), 'stUser/logoutUser'));
|
||||
$smarty->assign('remove', st_secure_link_to(__('Usuń'), 'stUser/logoutUser'));
|
||||
$smarty->assign('external', st_theme_image_tag($externalAccount.'_icon.png'));
|
||||
$smarty->assign('points_system_is_active', $points_system_is_active);
|
||||
$smarty->assign('points_show', $points_show);
|
||||
}
|
||||
|
||||
|
||||
$smarty->display('user_login_status.html');
|
||||
?>
|
||||
135
apps/frontend/modules/stUser/templates/_privacy.php
Normal file
135
apps/frontend/modules/stUser/templates/_privacy.php
Normal file
@@ -0,0 +1,135 @@
|
||||
<?php use_helper('stUrl'); ?>
|
||||
<?php st_theme_use_stylesheet('stUser.css') ?>
|
||||
|
||||
<?php $smarty = new stSmarty('stUser') ?>
|
||||
<?php $smarty->assign('culture', $sf_user->getCulture());?>
|
||||
<?php $smarty->assign('privacy_only', $privacy_only); ?>
|
||||
<?php $smarty->assign('new_window', isset($new_window) ? $new_window : null); ?>
|
||||
|
||||
<?php
|
||||
$compatibility_config = stConfig::getInstance('stCompatibilityBackend');
|
||||
|
||||
//if(stCompatibilityLaw::isSection("terms_privacy_countrys",stCompatibilityLaw::getIsoCountry($sf_user->getCulture())) && $compatibility_config->get('terms_privacy_show')==1){
|
||||
|
||||
$smarty->assign("terms_privacy_show", 1);
|
||||
$terms_privacy_text = $compatibility_config->get('terms_privacy_text', null, true);
|
||||
|
||||
|
||||
if(stTheme::is_responsive()):
|
||||
$terms_text = $terms_privacy_text;
|
||||
|
||||
$terms_text = preg_replace('/{LINK_TO_PRIVACY}/', '$', $terms_text);
|
||||
$terms_text = preg_replace('/{\/LINK_TO_PRIVACY}/', '$', $terms_text);
|
||||
$terms_text = preg_replace('/{LINK_TO_TERMS}/', '%', $terms_text);
|
||||
$terms_text = preg_replace('/{\/LINK_TO_TERMS}/', '%', $terms_text);
|
||||
|
||||
$tmp_string_terms_privacy = explode("$",$terms_text);
|
||||
$tmp_string_terms_shop = explode("%",$terms_text);
|
||||
|
||||
$terms_privacy = $tmp_string_terms_privacy[1];
|
||||
$terms_shop = isset($tmp_string_terms_shop[1]) ? $tmp_string_terms_shop[1] : null;
|
||||
|
||||
|
||||
$terms_text = $terms_privacy_text;
|
||||
|
||||
$terms_text = preg_replace('/{LINK_TO_PRIVACY}/', '%', $terms_text);
|
||||
$terms_text = preg_replace('/{\/LINK_TO_PRIVACY}/', '%', $terms_text);
|
||||
$terms_text = preg_replace('/{LINK_TO_TERMS}/', '%', $terms_text);
|
||||
$terms_text = preg_replace('/{\/LINK_TO_TERMS}/', '%', $terms_text);
|
||||
|
||||
|
||||
$tmp_string = explode("%",$terms_text);
|
||||
|
||||
$string = '';
|
||||
|
||||
foreach ($tmp_string as $value) {
|
||||
|
||||
if($value==$terms_privacy){
|
||||
$string .= st_get_component('stWebpageFrontend', 'link', array('state'=>'PRIVACY', 'label'=>$terms_privacy));
|
||||
}elseif($value==$terms_shop){
|
||||
$string .= st_get_component('stWebpageFrontend', 'link', array('state'=>'TERMS', 'label'=>$terms_shop));
|
||||
}else{
|
||||
$string .= $value;
|
||||
}
|
||||
}
|
||||
|
||||
$smarty->assign("terms_privacy_text", $string);
|
||||
else:
|
||||
$terms_right_2_cancel_text = preg_replace('/{RIGHT_TO_CANCEL}/', '<a id="active_right_2_cancel_overlay" class="label_terms_confirm" href="#active_right_2_cancel_overlay">', $terms_right_2_cancel_text);
|
||||
$terms_right_2_cancel_text = preg_replace('/{\/RIGHT_TO_CANCEL}/', '</a>', $terms_right_2_cancel_text);
|
||||
$terms_right_2_cancel_text = preg_replace('/{TERMS_AND_CONDITIONS}/', '<a id="active_terms_overlay" class="label_terms_confirm" href="#active_terms_overlay">', $terms_right_2_cancel_text);
|
||||
$terms_right_2_cancel_text = preg_replace('/{\/TERMS_AND_CONDITIONS}/', '</a>', $terms_right_2_cancel_text);
|
||||
$smarty->assign("terms_right_2_cancel_text", $terms_right_2_cancel_text);
|
||||
|
||||
endif;
|
||||
|
||||
|
||||
|
||||
//}
|
||||
|
||||
?>
|
||||
|
||||
<?php
|
||||
|
||||
$webpage = WebpagePeer::getPrivacyWebpage();
|
||||
if($webpage){
|
||||
$smarty->assign('privacy_url', st_url_for('stWebpageFrontend/index?url='.$webpage->getFriendlyUrl()));
|
||||
}else{
|
||||
$smarty->assign('privacy_url', "/");
|
||||
}
|
||||
|
||||
|
||||
?>
|
||||
|
||||
<script type="text/javascript" language="javascript">
|
||||
jQuery(function ($)
|
||||
{
|
||||
$(document).ready(function ()
|
||||
{
|
||||
$('#active_overlay_1, #active_overlay_2').click(function()
|
||||
{
|
||||
var api = $('#privacy_overlay').data('overlay');
|
||||
|
||||
if (!api)
|
||||
{
|
||||
$('#privacy_overlay').overlay(
|
||||
{
|
||||
|
||||
onBeforeLoad: function()
|
||||
{
|
||||
var wrap = this.getOverlay().find('.privacy_overlay_content');
|
||||
$.get('<?php echo url_for('stUser/showPrivacy') ?>', function(data)
|
||||
{
|
||||
wrap.html(data);
|
||||
});
|
||||
},
|
||||
load: true
|
||||
});
|
||||
}
|
||||
else
|
||||
{
|
||||
api.load();
|
||||
}
|
||||
});
|
||||
|
||||
$('#active_terms_overlay').click(function() {
|
||||
var api = $('#terms_overlay').data('overlay');
|
||||
if (!api) {
|
||||
$('#terms_overlay').overlay({
|
||||
onBeforeLoad: function() {
|
||||
var wrap = this.getOverlay().find('.terms_overlay_content');
|
||||
$.get('<?php echo url_for('stUser/showTerms') ?>', function(data) {
|
||||
wrap.html(data);
|
||||
});
|
||||
},
|
||||
load: true
|
||||
});
|
||||
} else {
|
||||
api.load();
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
<?php $smarty->display('user_privacy.html') ?>
|
||||
59
apps/frontend/modules/stUser/templates/_userSidebar.php
Normal file
59
apps/frontend/modules/stUser/templates/_userSidebar.php
Normal file
@@ -0,0 +1,59 @@
|
||||
<?php
|
||||
$smarty->display('user_sidebar.html');
|
||||
|
||||
?>
|
||||
|
||||
<script type="text/javascript">
|
||||
jQuery(function ($) {
|
||||
$(document).ready(function() {
|
||||
|
||||
$("#sidebar-handle").click(function() {
|
||||
$("#sidebar").css("left","0");
|
||||
$("#sidebar-handle").css("left","449px");
|
||||
});
|
||||
|
||||
$(".closeBtn").click(function() {
|
||||
if ($("#sidebar").css("left") == "0px")
|
||||
{
|
||||
$("#sidebar").css("left", "-449px");
|
||||
$("#sidebar-handle").css("left", "0px");
|
||||
}
|
||||
});
|
||||
|
||||
/*$(document).click(function(event) {
|
||||
if (!$(event.target).closest("#sidebar, #sidebar-handle").length && $("#sidebar").css("left") == "0px") {
|
||||
$("#sidebar").css("left", "-449px");
|
||||
$("#sidebar-handle").css("left", "0px");
|
||||
|
||||
}
|
||||
});*/
|
||||
|
||||
$(window).scroll(function() {
|
||||
$("#sidebar").css("left", "-450px");
|
||||
$("#sidebar-handle").css("left", "0px");
|
||||
});
|
||||
|
||||
|
||||
/*// Pobieranie koloru tła z elementu #header-navbar
|
||||
var backgroundColor = $("#header-navbar").css("background-color");
|
||||
|
||||
// Pobieranie koloru czcionki z pierwszego elementu linku w #nav-menu
|
||||
var fontColor = $("#nav-menu > .navbar-nav > li > a").css("color");
|
||||
|
||||
// Ustawianie pobranych kolorów dla elementu .sidebar-header
|
||||
$(".sidebar-header").css({
|
||||
"background-color": backgroundColor,
|
||||
"color": fontColor
|
||||
});
|
||||
|
||||
$("#product-recently-viewed-sidebar .row").css({
|
||||
"border-color": backgroundColor
|
||||
});
|
||||
|
||||
$("#product-observe-sidebar .row").css({
|
||||
"border-color": backgroundColor
|
||||
});*/
|
||||
|
||||
});
|
||||
});
|
||||
</script>
|
||||
@@ -0,0 +1,60 @@
|
||||
<?php
|
||||
|
||||
$smarty->assign('error_email', $sf_request->getError('user{email}'));
|
||||
|
||||
$smarty->assign('error_password', $sf_request->getError('user{password}'));
|
||||
|
||||
$smarty->assign('input_email', input_tag('user[email]', $sf_params->get('user[email]'), array('id'=>'st_form-user-ajax-email', 'placeholder'=>__('E-mail (login)'), 'maxlength'=>'255', 'class'=>'form-control')));
|
||||
|
||||
$smarty->assign('input_password', input_password_tag('user[password]', $sf_params->get('user[password]'), array('id'=>'st_form-user-ajax-password', 'placeholder'=>__('Hasło'), 'maxlength'=>'255', 'class'=>'form-control')));
|
||||
|
||||
$smarty->assign('remind_password_link', link_to(__('Przypomnij hasło'), 'stUser/remindPassword'));
|
||||
|
||||
$smarty->assign('create_account_link', link_to( __('Zarejestruj się'), 'stUser/createAccount'));
|
||||
|
||||
|
||||
$smarty->display('user_ajax_login_form.html');
|
||||
|
||||
?>
|
||||
|
||||
<script type="text/javascript">
|
||||
jQuery(function ($) {
|
||||
$(document).ready(function() {
|
||||
|
||||
|
||||
$( "#submit_login" ).click(function() {
|
||||
postLogin();
|
||||
});
|
||||
|
||||
$('#st_form-user-email').keypress(function(event) {
|
||||
var keycode = (event.keyCode ? event.keyCode : event.which);
|
||||
if (keycode == '13') {
|
||||
postLogin();
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
$('#st_form-user-password').keypress(function(event) {
|
||||
var keycode = (event.keyCode ? event.keyCode : event.which);
|
||||
if (keycode == '13') {
|
||||
postLogin();
|
||||
}
|
||||
});
|
||||
|
||||
function postLogin(){
|
||||
$.post("<?php echo url_for('stUser/ajaxLoginForm') ?>", { 'user[email]':$('#st_form-user-ajax-email').val(),'user[password]':$('#st_form-user-ajax-password').val()}, function(data) { $('#ajax-login-form').html(data); });
|
||||
}
|
||||
|
||||
|
||||
<?php if ($close==1): ?>
|
||||
|
||||
$('#ajax-login-form-modal').modal('hide');
|
||||
location.reload();
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
|
||||
|
||||
});
|
||||
});
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
use_helper('Validation', 'stCaptchaGD');
|
||||
st_theme_use_stylesheet('stUser.css');
|
||||
|
||||
$smarty->assign('login_link', link_to(__('Przejdź do strony logowania'), 'user/loginUser'));
|
||||
$smarty->assign('email', $email);
|
||||
|
||||
|
||||
$smarty->display('user_confirm_send_password.html');
|
||||
?>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
$smarty->assign('day', substr($change_date, 0, 10));
|
||||
$smarty->assign('hour', substr($change_date, 10));
|
||||
$smarty->assign('login', $to);
|
||||
$smarty->assign('password', $password);
|
||||
|
||||
$smarty->display('user_create_account_send_mail.html');
|
||||
?>
|
||||
@@ -0,0 +1,78 @@
|
||||
<?php
|
||||
use_helper('Validation', 'stCaptchaGD', 'stUserPassValidation', 'stUrl');
|
||||
use_javascript('jquery.infieldlabel.js', 'last');
|
||||
st_theme_use_stylesheet('stUser.css');
|
||||
|
||||
$smarty->assign('form_start', tag('form', array('class' => 'st_form_ver6', 'action' => st_secure_url_for('stUser/createAccount'), 'method' => 'post'), true));
|
||||
|
||||
$smarty->assign('error_email', form_error('user[email]', array('suffix'=>'', 'prefix'=>'', 'class'=>'st_error')));
|
||||
|
||||
$smarty->assign('label_email', label_for('st_form-user-email',"* ".__('E-mail (login)')));
|
||||
|
||||
$smarty->assign('input_email', input_tag('user[email]', $sf_params->get('user[email]'), array('id'=>'st_form-user-email','class'=>form_has_error('user{email}') ? 'st_form-error' : '')));
|
||||
|
||||
$smarty->assign('error_privacy', $sf_request->getError('error_privacy'));
|
||||
|
||||
$smarty->assign('error_password1', form_error('user[password1]', array('suffix'=>'', 'prefix'=>'', 'class'=>'st_error')));
|
||||
|
||||
$smarty->assign('label_password1', label_for('st_form-user-password1',"* ".__('Hasło')));
|
||||
|
||||
$smarty->assign('input_password1', input_password_tag('user[password1]', $sf_params->get('user[password1]'), array('id'=>'st_form-user-password1', 'autocomplete'=>'off' ,'class'=>form_has_error('user{password1}') ? 'st_form-error' : '')));
|
||||
|
||||
$smarty->assign('error_password2', form_error('user[password2]', array('suffix'=>'', 'prefix'=>'', 'class'=>'st_error')));
|
||||
|
||||
$smarty->assign('label_password2', label_for('st_form-user-password2',"* ".__('Potwierdź hasło')));
|
||||
|
||||
$smarty->assign('input_password2', input_password_tag('user[password2]', $sf_params->get('user[password2]'), array('id'=>'st_form-user-password2','class'=>form_has_error('user{password2}') ? 'st_form-error' : '')));
|
||||
|
||||
if($config->get('captcha_on', stConfig::INT)==1 && sfContext::getInstance()->getUser()->getAttribute('captcha_off')!=1)
|
||||
{
|
||||
$smarty->assign('captcha_mod', $config->get('captcha_mod'));
|
||||
|
||||
$smarty->assign('captcha_on', $config->get('captcha_on', stConfig::INT)==1);
|
||||
|
||||
$smarty->assign('error_captcha', form_error('captcha', array('suffix'=>'', 'prefix'=>'', 'class'=>'st_error')));
|
||||
|
||||
$smarty->assign('get_captcha', get_captcha('270'));
|
||||
|
||||
$smarty->assign('label_captcha', label_for('captcha_img',"* ".__('Cyfry z obrazka')));
|
||||
|
||||
$smarty->assign('input_captcha', input_tag('captcha', '', array('id'=>'captcha_img','class'=>form_has_error('captcha') ? 'st_form-error' : '')));
|
||||
|
||||
|
||||
if($config->get('captcha_mod')=="recaptcha3")
|
||||
{
|
||||
$smarty->assign('re_captcha_key', $config->get('recaptcha_key'));
|
||||
$smarty->assign('re_captcha_badge_position', $config->get('recaptcha_badge_position'));
|
||||
$smarty->assign('re_captcha_badge_margin', $config->get('recaptcha_badge_margin'));
|
||||
|
||||
$smarty->assign('badscore', sfContext::getInstance()->getUser()->getAttribute('badscore'));
|
||||
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
$smarty->assign('error_email', $sf_request->getError('user{email}'));
|
||||
$smarty->assign('error_password1', $sf_request->getError('user{password1}'));
|
||||
$smarty->assign('error_password2', $sf_request->getError('user{password2}'));
|
||||
$smarty->assign('error_captcha', $sf_request->getError('captcha'));
|
||||
$smarty->assign('error_re_captcha', $sf_request->getError('re_captcha'));
|
||||
|
||||
|
||||
$smarty->assign('checkbox_privacy', checkbox_tag('user[privacy]', 1, $sf_params->get('user[privacy]'), array('id'=>'st_form-user-privacy','class'=>form_has_error('user{privacy}') ? 'st_form-error checkobox' : 'checkobox')));
|
||||
|
||||
$smarty->assignPartial('link_to_privacy', 'stUser', 'privacy');
|
||||
|
||||
$smarty->assign('remind_password_link', link_to(__('Przypomnij hasło'), 'stUser/remindPassword'));
|
||||
|
||||
$smarty->assign('register_submit', submit_tag(__('Zarejestruj')));
|
||||
|
||||
if(stTheme::is_responsive()):
|
||||
$smarty->assign('input_email', input_tag('user[email]', $sf_params->get('user[email]'), array('id'=>'st_form-user-email', 'placeholder'=>"* ".__('E-mail (login)'), 'maxlength'=>'255', 'class'=>'form-control')));
|
||||
$smarty->assign('input_password1', input_password_tag('user[password1]', $sf_params->get('user[password1]'), array('id'=>'st_form-user-password1', 'autocomplete'=>'off' , 'placeholder'=>"* ".__('Hasło'), 'maxlength'=>'255', 'class'=>'form-control')));
|
||||
$smarty->assign('input_password2', input_password_tag('user[password2]', $sf_params->get('user[password2]'), array('id'=>'st_form-user-password2', 'autocomplete'=>'off', 'placeholder'=>"* ".__('Potwierdź hasło'), 'maxlength'=>'255', 'class'=>'form-control')));
|
||||
$smarty->assign('input_captcha', input_tag('captcha', '', array('id'=>'captcha_img', 'placeholder'=>"* ".__('Cyfry z obrazka'), 'maxlength'=>'255', 'class'=>'form-control')));
|
||||
endif;
|
||||
|
||||
$smarty->display('user_create_account.html');
|
||||
?>
|
||||
@@ -0,0 +1,71 @@
|
||||
<?php
|
||||
use_helper('Validation', 'stCaptchaGD', 'stUserPassValidation', 'stUrl');
|
||||
use_javascript('jquery.infieldlabel.js', 'last');
|
||||
st_theme_use_stylesheet('stUser.css');
|
||||
|
||||
if ($sf_request->getErrors())
|
||||
{
|
||||
$smarty->assign('error', __('Uzupełnij zaznaczone pola.'));
|
||||
}
|
||||
elseif ($sf_flash->has('error'))
|
||||
{
|
||||
$smarty->assign('error', $sf_flash->get('error'));
|
||||
}
|
||||
|
||||
$smarty->assign('login', $login);
|
||||
$smarty->assign('form_start', form_tag(st_secure_url_for('stUser/createNewPassword'), array('class' => 'st_form_ver6')));
|
||||
|
||||
$smarty->assign('error_email', form_error('user[email]', array('suffix'=>'', 'prefix'=>'', 'class'=>'st_error')));
|
||||
$smarty->assign('label_email', label_for('email',__('E-mail (login)')));
|
||||
$smarty->assign('input_email', input_tag('user[email]', $login, array('id'=>'email','disabled'=>'disabled','class'=>form_has_error('user{email}') ? 'st_form-error' : '')));
|
||||
|
||||
$smarty->assign('error_password1', form_error('user[password1]', array('suffix'=>'', 'prefix'=>'', 'class'=>'st_error')));
|
||||
$smarty->assign('label_password1', label_for('password1',__('Nowe hasło')));
|
||||
$smarty->assign('input_password1', input_password_tag('user[password1]', $sf_params->get('user[password1]'), array('id'=>'password1','class'=>form_has_error('user{password1}') ? 'st_form-error' : '')));
|
||||
|
||||
$smarty->assign('error_password2', form_error('user[password2]', array('suffix'=>'', 'prefix'=>'', 'class'=>'st_error')));
|
||||
$smarty->assign('label_password2', label_for('password2',__('Potwierdź hasło')));
|
||||
$smarty->assign('input_password2', input_password_tag('user[password2]', $sf_params->get('user[password2]'), array('id'=>'password2','class'=>form_has_error('user{password2}') ? 'st_form-error' : '')));
|
||||
|
||||
if($config->get('captcha_on', stConfig::INT)==1 && sfContext::getInstance()->getUser()->getAttribute('captcha_off')!=1)
|
||||
{
|
||||
$smarty->assign('captcha_mod', $config->get('captcha_mod'));
|
||||
$smarty->assign('captcha_on', $config->get('captcha_on', stConfig::INT)==1);
|
||||
$smarty->assign('error_captcha', form_error('captcha', array('suffix'=>'', 'prefix'=>'', 'class'=>'st_error')));
|
||||
$smarty->assign('get_captcha', get_captcha('270'));
|
||||
$smarty->assign('label_captcha', label_for('captcha',__('Cyfry z obrazka')));
|
||||
$smarty->assign('input_captcha', input_tag('captcha', '', array('id'=>'captcha','class'=>form_has_error('captcha') ? 'st_form-error' : '')));
|
||||
|
||||
if($config->get('captcha_mod')=="recaptcha3")
|
||||
{
|
||||
$smarty->assign('re_captcha_key', $config->get('recaptcha_key'));
|
||||
$smarty->assign('re_captcha_badge_position', $config->get('recaptcha_badge_position'));
|
||||
$smarty->assign('re_captcha_badge_margin', $config->get('recaptcha_badge_margin'));
|
||||
|
||||
$smarty->assign('badscore', sfContext::getInstance()->getUser()->getAttribute('badscore'));
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
$smarty->assign('error_email', $sf_request->getError('user{email}'));
|
||||
$smarty->assign('error_password1', $sf_request->getError('user{password1}'));
|
||||
$smarty->assign('error_password2', $sf_request->getError('user{password2}'));
|
||||
$smarty->assign('error_captcha', $sf_request->getError('captcha'));
|
||||
|
||||
|
||||
if(stTheme::is_responsive()):
|
||||
$smarty->assign('input_email', input_tag('user[email]', $login, array('id'=>'st_form-user-email','disabled'=>'disabled','class'=>'form-control')));
|
||||
$smarty->assign('input_password1', input_password_tag('user[password1]', $sf_params->get('user[password1]'), array('id'=>'st_form-user-password1', 'autocomplete'=>'off' , 'placeholder'=>"* ".__('Hasło'), 'maxlength'=>'255', 'class'=>'form-control')));
|
||||
$smarty->assign('input_password2', input_password_tag('user[password2]', $sf_params->get('user[password2]'), array('id'=>'st_form-user-password2', 'autocomplete'=>'off', 'placeholder'=>"* ".__('Potwierdź hasło'), 'maxlength'=>'255', 'class'=>'form-control')));
|
||||
$smarty->assign('input_captcha', input_tag('captcha', '', array('id'=>'captcha_img', 'placeholder'=>"* ".__('Cyfry z obrazka'), 'maxlength'=>'255', 'class'=>'form-control')));
|
||||
endif;
|
||||
|
||||
|
||||
|
||||
$smarty->assign('hidden_hash_code', input_hidden_tag('hash_code', $hashCode));
|
||||
$smarty->assign('hidden_secure_token', input_hidden_tag('secure_token', $sf_request->getParameter('secure_token')));
|
||||
$smarty->assign('register_new_password', submit_tag(__('Zmień hasło')));
|
||||
|
||||
$smarty->display('user_create_new_password.html');
|
||||
?>
|
||||
@@ -0,0 +1,82 @@
|
||||
<?php use_helper('Validation', 'stCaptchaGD', 'stUserPassValidation', 'stUrl') ?>
|
||||
<?php use_javascript('jquery.infieldlabel.js', 'last'); ?>
|
||||
<?php st_theme_use_stylesheet('stUser.css') ?>
|
||||
|
||||
<?php $smarty->assign('login', $login) ?>
|
||||
|
||||
<?php $smarty->assign('form_start', form_tag(st_secure_url_for('stUser/createPassword'), array('class' => 'st_form_ver6'))) ?>
|
||||
|
||||
<?php $smarty->assign('error_email', form_error('user[email]', array('suffix'=>'', 'prefix'=>'', 'class'=>'st_error'))) ?>
|
||||
|
||||
<?php $smarty->assign('label_email', label_for('st_form-user-email',__('E-mail (login)'))) ?>
|
||||
|
||||
<?php $smarty->assign('input_email', input_tag('user[email]', $login, array('id'=>'st_form-user-email','disabled'=>'disabled','class'=>form_has_error('user{email}') ? 'st_form-error' : ''))) ?>
|
||||
|
||||
<?php $smarty->assign('input_hidden_email', input_hidden_tag('user[email]', $login)) ?>
|
||||
|
||||
<?php $smarty->assign('error_password1', form_error('user[password1]', array('suffix'=>'', 'prefix'=>'', 'class'=>'st_error'))) ?>
|
||||
|
||||
<?php $smarty->assign('label_password1', label_for('st_form-user-password1',__('Hasło'))) ?>
|
||||
|
||||
<?php $smarty->assign('input_password1', input_password_tag('user[password1]', $sf_params->get('user[password1]'), array('id'=>'st_form-user-password1','class'=>form_has_error('user{password1}') ? 'st_form-error' : ''))) ?>
|
||||
|
||||
<?php $smarty->assign('error_password2', form_error('user[password2]', array('suffix'=>'', 'prefix'=>'', 'class'=>'st_error'))) ?>
|
||||
|
||||
<?php $smarty->assign('label_password2', label_for('st_form-user-password2',__('Potwierdź hasło'))) ?>
|
||||
|
||||
<?php $smarty->assign('input_password2', input_password_tag('user[password2]', $sf_params->get('user[password2]'), array('id'=>'st_form-user-password2','class'=>form_has_error('user{password2}') ? 'st_form-error' : ''))) ?>
|
||||
|
||||
|
||||
<?php if($config->get('captcha_on', stConfig::INT)==1 && sfContext::getInstance()->getUser()->getAttribute('captcha_off')!=1): ?>
|
||||
|
||||
<?php $smarty->assign('captcha_mod', $config->get('captcha_mod')); ?>
|
||||
|
||||
<?php $smarty->assign('captcha_on', $config->get('captcha_on', stConfig::INT)==1) ?>
|
||||
|
||||
<?php $smarty->assign('error_captcha', form_error('captcha', array('suffix'=>'', 'prefix'=>'', 'class'=>'st_error'))) ?>
|
||||
|
||||
<?php $smarty->assign('get_captcha', get_captcha('270')) ?>
|
||||
|
||||
<?php $smarty->assign('label_captcha', label_for('captcha_img',__('Cyfry z obrazka'))) ?>
|
||||
|
||||
<?php $smarty->assign('input_captcha', input_tag('captcha', '', array('id'=>'captcha_img','class'=>form_has_error('captcha') ? 'st_form-error' : ''))) ?>
|
||||
|
||||
<?php
|
||||
if($config->get('captcha_mod')=="recaptcha3")
|
||||
{
|
||||
$smarty->assign('re_captcha_key', $config->get('recaptcha_key'));
|
||||
$smarty->assign('re_captcha_badge_position', $config->get('recaptcha_badge_position'));
|
||||
$smarty->assign('re_captcha_badge_margin', $config->get('recaptcha_badge_margin'));
|
||||
|
||||
$smarty->assign('badscore', sfContext::getInstance()->getUser()->getAttribute('badscore'));
|
||||
|
||||
}
|
||||
?>
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
<?php
|
||||
$smarty->assign('error_email', $sf_request->getError('user{email}'));
|
||||
$smarty->assign('error_password1', $sf_request->getError('user{password1}'));
|
||||
$smarty->assign('error_password2', $sf_request->getError('user{password2}'));
|
||||
$smarty->assign('error_captcha', $sf_request->getError('captcha'));
|
||||
?>
|
||||
|
||||
<?php $smarty->assign('error_privacy', form_error('user[privacy]', array('suffix'=>'', 'prefix'=>'', 'class'=>'st_error'))) ?>
|
||||
|
||||
<?php $smarty->assign('checkbox_privacy', checkbox_tag('user[privacy]', 1, true, array('id'=>'st_form-user-privacy','class'=>form_has_error('user{privacy}') ? 'st_form-error' : ''))) ?>
|
||||
|
||||
<?php $smarty->assignPartial('link_to_privacy', 'stUser', 'privacy'); ?>
|
||||
|
||||
<?php $smarty->assign('register_submit', submit_tag(__('Zarejestruj'))) ?>
|
||||
|
||||
<?php
|
||||
if(stTheme::is_responsive()):
|
||||
$smarty->assign('input_email', input_tag('user[email]', $login, array('id'=>'st_form-user-email','disabled'=>'disabled','class'=>'form-control')));
|
||||
$smarty->assign('input_password1', input_password_tag('user[password1]', $sf_params->get('user[password1]'), array('id'=>'st_form-user-password1', 'autocomplete'=>'off' , 'placeholder'=>"* ".__('Hasło'), 'maxlength'=>'255', 'class'=>'form-control')));
|
||||
$smarty->assign('input_password2', input_password_tag('user[password2]', $sf_params->get('user[password2]'), array('id'=>'st_form-user-password2', 'autocomplete'=>'off', 'placeholder'=>"* ".__('Potwierdź hasło'), 'maxlength'=>'255', 'class'=>'form-control')));
|
||||
$smarty->assign('input_captcha', input_tag('captcha', '', array('id'=>'captcha_img', 'placeholder'=>"* ".__('Cyfry z obrazka'), 'maxlength'=>'255', 'class'=>'form-control')));
|
||||
endif;
|
||||
?>
|
||||
|
||||
<?php $smarty->display('user_create_password.html') ?>
|
||||
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
$smarty->assign('email', $email);
|
||||
|
||||
$smarty->display('user_delete_account.html');
|
||||
?>
|
||||
104
apps/frontend/modules/stUser/templates/editAccountSuccess.php
Normal file
104
apps/frontend/modules/stUser/templates/editAccountSuccess.php
Normal file
@@ -0,0 +1,104 @@
|
||||
<?php use_helper('Validation', 'stUserPassValidation', 'stUrl') ?>
|
||||
<?php st_theme_use_stylesheet('stUser.css') ?>
|
||||
<?php use_javascript('jquery.infieldlabel.js', 'last') ?>
|
||||
|
||||
|
||||
|
||||
<?php $smarty->assign('my_account', link_to(__('Moje konto'), 'stUserData/userPanel')) ?>
|
||||
|
||||
<?php $smarty->assign('user_panel_menu', st_get_component('stUserData', 'userPanelMenu')) ?>
|
||||
|
||||
<?php $smarty->assign('form_start', '<form method="post" action="'.st_secure_url_for('stUser/editLogin').'" class="st_form_ver6">') ?>
|
||||
|
||||
<?php $smarty->assign('error_email', $sf_request->getError('user{email}')) ?>
|
||||
|
||||
<?php $smarty->assign('label_email', label_for('email',__('E-mail (login)'))) ?>
|
||||
|
||||
<?php $smarty->assign('input_email', input_tag('user[email]', $email, array('id'=>'email','class'=>form_has_error('user{email}') ? 'st_form-error' : ''))) ?>
|
||||
|
||||
<?php $smarty->assign('salt', $salt) ?>
|
||||
|
||||
|
||||
|
||||
<?php $smarty->assign('form_start_2', '<form method="post" action="'.st_secure_url_for('stUser/editPassword').'" class="st_form_ver6" autocomplete="off">') ?>
|
||||
|
||||
<?php $smarty->assign('label_user_oldpassword', label_for('oldpassword',__('Stare hasło'))) ?>
|
||||
|
||||
<?php $smarty->assign('error_user_oldpassword', $sf_request->getError('user{oldpassword}')) ?>
|
||||
|
||||
<?php $smarty->assign('input_user_oldpassword', input_password_tag('user[oldpassword]', $sf_params->get('user[oldpassword]'), array('id'=>'oldpassword', 'autocomplete'=>'off','class'=>form_has_error('user{oldpassword}') ? 'st_form-error' : ''))) ?>
|
||||
|
||||
<?php $smarty->assign('label_user_password1', label_for('password1',__('Nowe hasło'))) ?>
|
||||
|
||||
<?php $smarty->assign('error_user_password1', $sf_request->getError('user{password1}')) ?>
|
||||
|
||||
<?php $smarty->assign('input_user_password1',input_password_tag('user[password1]', $sf_params->get('user[password1]'), array('id'=>'password1', 'autocomplete'=>'off','class'=>form_has_error('user{password1}') ? 'st_form-error' : ''))) ?>
|
||||
|
||||
|
||||
<?php $smarty->assign('label_user_password2', label_for('password2',__('Potwierdź hasło'))) ?>
|
||||
|
||||
<?php $smarty->assign('error_user_password2', $sf_request->getError('user{password2}')) ?>
|
||||
|
||||
<?php $smarty->assign('input_user_password2', input_password_tag('user[password2]', $sf_params->get('user[password2]'), array('id'=>'password2', 'autocomplete'=>'off','class'=>form_has_error('user{password2}') ? 'st_form-error' : ''))) ?>
|
||||
|
||||
|
||||
<?php if(stTheme::is_responsive()): ?>
|
||||
|
||||
<?php $smarty->assign('input_email', input_tag('user[email]', $email, array('id'=>'email', 'placeholder'=> __('E-mail (login)'), 'maxlength'=>'255', 'class'=>'form-control'))); ?>
|
||||
|
||||
<?php $smarty->assign('input_user_oldpassword', input_password_tag('user[oldpassword]', $sf_params->get('user[oldpassword]'), array('id'=>'oldpassword', 'autocomplete'=>'off', 'placeholder'=> __('Stare hasło'), 'maxlength'=>'255', 'class'=>'form-control'))); ?>
|
||||
|
||||
<?php $smarty->assign('input_user_password1',input_password_tag('user[password1]', $sf_params->get('user[password1]'), array('id'=>'password1', 'autocomplete'=>'off', 'placeholder'=> __('Nowe hasło'), 'maxlength'=>'255', 'class'=>'form-control'))); ?>
|
||||
|
||||
<?php $smarty->assign('input_user_password2', input_password_tag('user[password2]', $sf_params->get('user[password2]'), array('id'=>'password2', 'autocomplete'=>'off', 'placeholder'=> __('Potwierdź hasło'), 'maxlength'=>'255', 'class'=>'form-control'))); ?>
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<?php
|
||||
if($userDataBilling)
|
||||
{
|
||||
|
||||
$smarty->assign('billing_company', $userDataBilling->getCompany());
|
||||
$smarty->assign('billing_vat_number', $userDataBilling->getVatNumber());
|
||||
$smarty->assign('billing_full_name', $userDataBilling->getFullName());
|
||||
$smarty->assign('billing_address', $userDataBilling->getAddress());
|
||||
$smarty->assign('billing_address_more', $userDataBilling->getAddressMore());
|
||||
$smarty->assign('billing_region', $userDataBilling->getRegion());
|
||||
$smarty->assign('billing_code', $userDataBilling->getCode());
|
||||
$smarty->assign('billing_town', $userDataBilling->getTown());
|
||||
$smarty->assign('billing_country', $userDataBilling->getCountries());
|
||||
$smarty->assign('billing_phone', $userDataBilling->getPhone());
|
||||
$smarty->assign('billing_pesel', $userDataBilling->getPesel());
|
||||
|
||||
$billing_edit_url = st_url_for('stUserData/editProfile?userDataType=billing&userDataId='.$userDataBilling->getId().'&showEditProfileForm=true');
|
||||
$smarty->assign('billing_edit_url', $billing_edit_url);
|
||||
}
|
||||
?>
|
||||
|
||||
<?php
|
||||
if($userDataDelivery)
|
||||
{
|
||||
$smarty->assign('delivery_company', $userDataDelivery->getCompany());
|
||||
$smarty->assign('delivery_full_name', $userDataDelivery->getFullName());
|
||||
$smarty->assign('delivery_address', $userDataDelivery->getAddress());
|
||||
$smarty->assign('delivery_address_more', $userDataDelivery->getAddressMore());
|
||||
$smarty->assign('delivery_region', $userDataDelivery->getRegion());
|
||||
$smarty->assign('delivery_code', $userDataDelivery->getCode());
|
||||
$smarty->assign('delivery_town', $userDataDelivery->getTown());
|
||||
$smarty->assign('delivery_country', $userDataDelivery->getCountries());
|
||||
$smarty->assign('delivery_phone', $userDataDelivery->getPhone());
|
||||
|
||||
$delivery_edit_url = st_url_for('stUserData/editProfile?userDataType=delivery&userDataId='.$userDataDelivery->getId().'&showEditProfileForm=true');
|
||||
$smarty->assign('delivery_edit_url', $delivery_edit_url);
|
||||
}
|
||||
?>
|
||||
|
||||
<?php if($showMessage == true): ?>
|
||||
<?php $smarty->assign('show_message', $showMessage) ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php $smarty->display('user_edit_account.html'); ?>
|
||||
@@ -0,0 +1,6 @@
|
||||
<?php use_helper('Validation') ?>
|
||||
<?php st_theme_use_stylesheet('stUser.css') ?>
|
||||
|
||||
<?php $smarty->assign('confirm', $confirm); ?>
|
||||
|
||||
<?php $smarty->display('user_email_confirm.html'); ?>
|
||||
41
apps/frontend/modules/stUser/templates/loginUserSuccess.php
Normal file
41
apps/frontend/modules/stUser/templates/loginUserSuccess.php
Normal file
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
use_helper('Validation','stUrl');
|
||||
st_theme_use_stylesheet('stUser.css');
|
||||
use_javascript('jquery.infieldlabel.js', 'last');
|
||||
$smarty->assign('new_user_icon', st_theme_image_tag('icon_new_user.gif'));
|
||||
$register_url = st_secure_url_for('stUser/createAccount');
|
||||
$smarty->assign('register_link', content_tag('a', __('Zarejestruj się'), array('href' => $register_url)));
|
||||
|
||||
//default2
|
||||
$smarty->assign('register_url', $register_url);
|
||||
$smarty->assign('form_start', tag('form', array('class' => 'st_form_ver6', 'action' => st_secure_url_for('stUser/loginUser'), 'method' => 'post'), true));
|
||||
$smarty->assign('error_email', form_error('user[email]', array('suffix'=>'', 'prefix'=>'', 'class'=>'st_error')));
|
||||
$smarty->assign('label_email', label_for('st_form-user-email',__('E-mail (login)')));
|
||||
$smarty->assign('input_email', input_tag('user[email]', $sf_params->get('user[email]'), array('id'=>'st_form-user-email','class'=>form_has_error('user{email}') ? 'st_form-error' : '')));
|
||||
$smarty->assign('error_password', form_error('user[password]', array('suffix'=>'', 'prefix'=>'', 'class'=>'st_error')));
|
||||
$smarty->assign('label_password', label_for('st_form-user-password',__('Hasło')));
|
||||
$smarty->assign('input_password', input_password_tag('user[password]', $sf_params->get('user[password]'), array('id'=>'st_form-user-password','class'=>form_has_error('user{password}') ? 'st_form-error' : '')));
|
||||
$smarty->assign('login_submit', submit_tag(__('Zaloguj')));
|
||||
$smarty->assign('remind_password_link', link_to(__('Przypomnij hasło'), 'stUser/remindPassword'));
|
||||
|
||||
$smarty->assign('error_email', $sf_request->getError('user{email}'));
|
||||
$smarty->assign('error_password', $sf_request->getError('user{password}'));
|
||||
|
||||
$user_config = stConfig::getInstance(sfContext::getInstance(), 'stUser');
|
||||
$login_google_on = $user_config->get('google_auth_on');
|
||||
$smarty->assign('login_google_on', $login_google_on);
|
||||
$smarty->assign('google_url', stGooglePlusAccess::authUser('create'));
|
||||
|
||||
if ($sf_request->getErrors()):
|
||||
$smarty->assign('login_show_error', 1);
|
||||
endif;
|
||||
|
||||
if(stTheme::is_responsive()):
|
||||
$smarty->assign('input_email', input_tag('user[email]', $sf_params->get('user[email]'), array('id'=>'st_form-user-email', 'placeholder'=>__('E-mail (login)'), 'maxlength'=>'255', 'class'=>'form-control')));
|
||||
$smarty->assign('input_password', input_password_tag('user[password]', $sf_params->get('user[password]'), array('id'=>'st_form-user-password', 'placeholder'=>__('Hasło'), 'maxlength'=>'255', 'class'=>'form-control')));
|
||||
endif;
|
||||
|
||||
$smarty->assignPartial('privacy_link', 'stUser', 'privacy');
|
||||
|
||||
$smarty->display('user_login_user.html');
|
||||
?>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?php use_helper('Validation','stUrl') ?>
|
||||
|
||||
<?php st_theme_use_stylesheet('stUser.css') ?>
|
||||
|
||||
<?php $smarty->assign('username', $username) ?>
|
||||
|
||||
<?php $smarty->assign('redirect', SF_ENVIRONMENT != 'theme') ?>
|
||||
|
||||
<?php $smarty->display('user_logout_user.html') ?>
|
||||
18
apps/frontend/modules/stUser/templates/migrationSuccess.php
Normal file
18
apps/frontend/modules/stUser/templates/migrationSuccess.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php use_helper('Validation', 'stCaptchaGD') ?>
|
||||
<?php st_theme_use_stylesheet('stUser.css') ?>
|
||||
|
||||
<?php $smarty->assign('form_start', form_tag('stUser/saveMigrationAccount', array('class' => 'st_form'))) ?>
|
||||
|
||||
<?php $smarty->assign('error_email', form_error('user[email]', array('suffix'=>'', 'prefix'=>'', 'class'=>'st_error'))) ?>
|
||||
|
||||
<?php $smarty->assign('label_email', label_for('user[email]',__('E-mail (login)'))) ?>
|
||||
|
||||
<?php $smarty->assign('input_email', input_tag('user[email]',""), array('id'=>'st_form-user-email','class'=>form_has_error('user{email}') ? 'st_form-error' : '')) ?>
|
||||
|
||||
<?php $smarty->assign('hidden_old_login', input_hidden_tag('user[old_login]', $old_login)) ?>
|
||||
|
||||
<?php $smarty->assign('hidden_password', input_hidden_tag('user[password]', $password)) ?>
|
||||
|
||||
<?php $smarty->assign('register_submit', submit_tag(__('Zarejestruj'))) ?>
|
||||
|
||||
<?php $smarty->display('user_migration.html'); ?>
|
||||
@@ -0,0 +1,67 @@
|
||||
<?php use_helper('Validation', 'stCaptchaGD', 'stUrl'); ?>
|
||||
|
||||
<?php use_javascript('jquery.infieldlabel.js', 'last'); ?>
|
||||
<?php st_theme_use_stylesheet('stUser.css') ?>
|
||||
|
||||
<?php if(!$send_true) : ?>
|
||||
|
||||
<?php $smarty->assign('not_send_true', !$send_true) ?>
|
||||
|
||||
<?php $smarty->assign('form_start', form_tag(st_secure_url_for('stUser/remindPassword'), array('class' => 'st_form_ver6'))) ?>
|
||||
|
||||
<?php $smarty->assign('label_email', label_for('email',__('E-mail (login)'))) ?>
|
||||
<?php $smarty->assign('error', $sf_flash->get('error')) ?>
|
||||
<?php $smarty->assign('error_email', form_error('user[email]', array('suffix'=>'', 'prefix'=>'', 'class'=>'st_error'))) ?>
|
||||
|
||||
<?php $smarty->assign('input_email', input_tag('user[email]',$sf_params->get('user[email]'), array('id'=>'email','class'=>form_has_error('user{email}') ? 'st_form-error' : ''))) ?>
|
||||
|
||||
<?php if($config->get('captcha_on', stConfig::INT)==1 && sfContext::getInstance()->getUser()->getAttribute('captcha_off')!=1): ?>
|
||||
|
||||
<?php $smarty->assign('captcha_mod', $config->get('captcha_mod')); ?>
|
||||
|
||||
<?php $smarty->assign('captcha_on', $config->get('captcha_on', stConfig::INT)==1) ?>
|
||||
|
||||
<?php $smarty->assign('error_captcha', form_error('captcha', array('suffix'=>'', 'prefix'=>'', 'class'=>'st_error'))) ?>
|
||||
|
||||
<?php $smarty->assign('get_captcha', get_captcha("270")) ?>
|
||||
|
||||
<?php $smarty->assign('label_captcha', label_for('captcha',__('Cyfry z obrazka'))) ?>
|
||||
|
||||
<?php $smarty->assign('input_captcha', input_tag('captcha', '', array('id'=>'captcha','class'=>form_has_error('captcha') ? 'st_form-error' : ''))) ?>
|
||||
|
||||
<?php
|
||||
if($config->get('captcha_mod')=="recaptcha3")
|
||||
{
|
||||
$smarty->assign('re_captcha_key', $config->get('recaptcha_key'));
|
||||
$smarty->assign('re_captcha_badge_position', $config->get('recaptcha_badge_position'));
|
||||
$smarty->assign('re_captcha_badge_margin', $config->get('recaptcha_badge_margin'));
|
||||
|
||||
$smarty->assign('badscore', sfContext::getInstance()->getUser()->getAttribute('badscore'));
|
||||
}
|
||||
?>
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
<?php $smarty->assign('remind_submit', submit_tag(__('Przypomnij'))) ?>
|
||||
|
||||
<?php else: ?>
|
||||
|
||||
<?php $smarty->assign('email_send_to', $sf_params->get('user[email]')) ?>
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
<?php $smarty->assignPartial('privacy_link', 'stUser', 'privacy'); ?>
|
||||
|
||||
<?php
|
||||
if(stTheme::is_responsive()):
|
||||
$smarty->assign('input_email', input_tag('user[email]', $sf_params->get('user[email]'), array('id'=>'st_form-user-email', 'placeholder'=>"* ".__('E-mail (login)'), 'maxlength'=>'255', 'class'=>'form-control')));
|
||||
$smarty->assign('input_captcha', input_tag('captcha', '', array('id'=>'captcha_img', 'placeholder'=>"* ".__('Cyfry z obrazka'), 'maxlength'=>'255', 'class'=>'form-control')));
|
||||
endif;
|
||||
?>
|
||||
|
||||
<?php
|
||||
$smarty->assign('error_email', $sf_request->getError('user{email}'));
|
||||
$smarty->assign('error_captcha', $sf_request->getError('captcha'));
|
||||
?>
|
||||
|
||||
<?php $smarty->display('user_remind_password.html') ?>
|
||||
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
$smarty->assign('email', $email);
|
||||
|
||||
$smarty->display('user_request_delete_account.html');
|
||||
?>
|
||||
@@ -0,0 +1,29 @@
|
||||
<?php use_helper('Date','stApplication', 'stUrl') ?>
|
||||
|
||||
<?php $smarty->assign('host', $sf_request->getHost()) ?>
|
||||
|
||||
<?php $smarty->assign('user_name', $user) ?>
|
||||
|
||||
<?php $smarty->assign('user_submit', st_url_for('@stChangePassForUser?hash_code=' . $hashCode . '&secure_token=' . $secure_token, 'absolute=true')) ?>
|
||||
|
||||
<?php $smarty->assign('user_head', $head) ?>
|
||||
|
||||
<?php $smarty->assign('user_foot', $foot) ?>
|
||||
|
||||
|
||||
<?php $smarty->assign('bg_header_color', $mail_config->get('bg_header_color')) ?>
|
||||
|
||||
<?php $smarty->assign('bg_footer_color', $mail_config->get('bg_footer_color')) ?>
|
||||
|
||||
<?php $smarty->assign('bg_action_color', $mail_config->get('bg_action_color')) ?>
|
||||
|
||||
<?php $smarty->assign('bg_action_link_color', $mail_config->get('bg_action_link_color')) ?>
|
||||
|
||||
<?php $smarty->assign('link_color', $mail_config->get('link_color')) ?>
|
||||
|
||||
<?php $smarty->assign('logo', $mail_config->get('logo')) ?>
|
||||
|
||||
|
||||
<?php $smarty->assign('date', date("d-m-Y H:i"));?>
|
||||
|
||||
<?php $smarty->display('user_send_link_to_change_password_to_user_html_mail.html') ?>
|
||||
@@ -0,0 +1,5 @@
|
||||
<?php $smarty->assign('user_name', $user) ?>
|
||||
|
||||
<?php $smarty->assign('user_submit', link_to(__('Zmień hasło'), '@stChangePassForUser?hash_code=' . $hashCode . '&secure_token=' . $secure_token, 'absolute=true')) ?>
|
||||
|
||||
<?php $smarty->display('user_send_link_to_change_password_to_user_plain_mail.html') ?>
|
||||
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
use_helper('Date','stApplication', 'stUrl');
|
||||
|
||||
$smarty->assign('host', $sf_request->getHost());
|
||||
$smarty->assign('user_name', $user->getUsername());
|
||||
$smarty->assign('user_password', $password);
|
||||
$smarty->assign('user_head', $head);
|
||||
$smarty->assign('user_foot', $foot);
|
||||
$smarty->assign('user_content_head', $head_content);
|
||||
$smarty->assign('user_content_foot', $foot_content);
|
||||
$smarty->assign('user_link', st_url_for('@stGoToLogin', 'absolute=true for_app=frontend'));
|
||||
$smarty->assign('bg_header_color', $mail_config->get('bg_header_color'));
|
||||
$smarty->assign('bg_footer_color', $mail_config->get('bg_footer_color'));
|
||||
$smarty->assign('bg_action_color', $mail_config->get('bg_action_color'));
|
||||
$smarty->assign('bg_action_link_color', $mail_config->get('bg_action_link_color'));
|
||||
$smarty->assign('link_color', $mail_config->get('link_color'));
|
||||
$smarty->assign('logo', $mail_config->get('logo'));
|
||||
$smarty->assign('date', date("d-m-Y H:i"));
|
||||
$smarty->display('user_send_new_password_to_user_html_mail.html');
|
||||
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
use_helper('Date','stApplication', 'stUrl');
|
||||
|
||||
$smarty->assign('host', $sf_request->getHost());
|
||||
$smarty->assign('user_name', $user->getUsername());
|
||||
$smarty->assign('user_password', $password);
|
||||
$smarty->assign('user_head', $head);
|
||||
$smarty->assign('user_foot', $foot);
|
||||
$smarty->assign('user_content_head', $head_content);
|
||||
$smarty->assign('user_content_foot', $foot_content);
|
||||
$smarty->assign('user_link', st_url_for('@stGoToLogin', 'absolute=true for_app=frontend'));
|
||||
$smarty->assign('bg_header_color', $mail_config->get('bg_header_color'));
|
||||
$smarty->assign('bg_footer_color', $mail_config->get('bg_footer_color'));
|
||||
$smarty->assign('bg_action_color', $mail_config->get('bg_action_color'));
|
||||
$smarty->assign('bg_action_link_color', $mail_config->get('bg_action_link_color'));
|
||||
$smarty->assign('link_color', $mail_config->get('link_color'));
|
||||
$smarty->assign('logo', $mail_config->get('logo'));
|
||||
$smarty->assign('date', date("d-m-Y H:i"));
|
||||
$smarty->display('user_send_new_password_to_user_plain_mail.html');
|
||||
@@ -0,0 +1,31 @@
|
||||
<?php use_helper('Date','stApplication', 'stUrl' ) ?>
|
||||
|
||||
<?php $smarty->assign('host', $sf_request->getHost()) ?>
|
||||
|
||||
<?php $smarty->assign('user_name', $user->getUsername()) ?>
|
||||
|
||||
<?php $smarty->assign('user_id', $user->getId()) ?>
|
||||
|
||||
<?php $smarty->assign('user_head', $head) ?>
|
||||
|
||||
<?php $smarty->assign('user_foot', $foot) ?>
|
||||
|
||||
|
||||
<?php $smarty->assign('bg_header_color', $mail_config->get('bg_header_color')) ?>
|
||||
|
||||
<?php $smarty->assign('bg_footer_color', $mail_config->get('bg_footer_color')) ?>
|
||||
|
||||
<?php $smarty->assign('bg_action_color', $mail_config->get('bg_action_color')) ?>
|
||||
|
||||
<?php $smarty->assign('bg_action_link_color', $mail_config->get('bg_action_link_color')) ?>
|
||||
|
||||
<?php $smarty->assign('link_color', $mail_config->get('link_color')) ?>
|
||||
|
||||
<?php $smarty->assign('logo', $mail_config->get('logo')) ?>
|
||||
|
||||
|
||||
<?php $smarty->assign('user_link', st_url_for('@stGoToUser?user='.$user->getId(), true,'backend')) ?>
|
||||
|
||||
<?php $smarty->assign('user_created_at', date("d-m-Y H:i", strtotime($user->getCreatedAt()))) ?>
|
||||
|
||||
<?php $smarty->display('user_send_new_user_to_admin_html_mail.html') ?>
|
||||
@@ -0,0 +1,11 @@
|
||||
<?php $smarty->assign('user_id', $user->getId()) ?>
|
||||
|
||||
<?php $smarty->assign('user_name', $user->getUsername()) ?>
|
||||
|
||||
<?php $smarty->assign('user_head', $head) ?>
|
||||
|
||||
<?php $smarty->assign('user_foot', $foot) ?>
|
||||
|
||||
<?php $smarty->assign('user_created_at', $user->getCreatedAt()) ?>
|
||||
|
||||
<?php $smarty->display('user_send_new_user_to_admin_plain_mail.html') ?>
|
||||
@@ -0,0 +1,35 @@
|
||||
<?php use_helper('Date', 'stUrl') ?>
|
||||
|
||||
<?php $smarty->assign('host', $sf_request->getHost()) ?>
|
||||
|
||||
<?php $smarty->assign('user_name', $user->getUsername()) ?>
|
||||
|
||||
<?php $smarty->assign('user_password', $password) ?>
|
||||
|
||||
<?php $smarty->assign('user_head', $head) ?>
|
||||
|
||||
<?php $smarty->assign('user_foot', $foot) ?>
|
||||
|
||||
<?php $smarty->assign('user_content_head', $head_content) ?>
|
||||
|
||||
<?php $smarty->assign('user_content_foot', $foot_content) ?>
|
||||
|
||||
|
||||
<?php $smarty->assign('bg_header_color', $mail_config->get('bg_header_color')) ?>
|
||||
|
||||
<?php $smarty->assign('bg_footer_color', $mail_config->get('bg_footer_color')) ?>
|
||||
|
||||
<?php $smarty->assign('bg_action_color', $mail_config->get('bg_action_color')) ?>
|
||||
|
||||
<?php $smarty->assign('bg_action_link_color', $mail_config->get('bg_action_link_color')) ?>
|
||||
|
||||
<?php $smarty->assign('link_color', $mail_config->get('link_color')) ?>
|
||||
|
||||
<?php $smarty->assign('logo', $mail_config->get('logo')) ?>
|
||||
|
||||
|
||||
<?php $smarty->assign('user_created_at', date("d-m-Y H:i", strtotime($user->getCreatedAt()))) ?>
|
||||
|
||||
<?php $smarty->assign('user_submit', st_url_for('@stConfirmForUser?user=' . $user->getId() . '&hash_code=' . $user->getHashCode().'&language='.$languageShortcut, true)) ?>
|
||||
|
||||
<?php $smarty->display('user_send_new_user_to_user_html_mail.html') ?>
|
||||
@@ -0,0 +1,17 @@
|
||||
<?php $smarty->assign('user_name', $user->getUsername()) ?>
|
||||
|
||||
<?php $smarty->assign('user_password', $password) ?>
|
||||
|
||||
<?php $smarty->assign('user_head', $head) ?>
|
||||
|
||||
<?php $smarty->assign('user_foot', $foot) ?>
|
||||
|
||||
<?php $smarty->assign('user_content_head', $head_content) ?>
|
||||
|
||||
<?php $smarty->assign('user_content_foot', $foot_content) ?>
|
||||
|
||||
<?php $smarty->assign('user_created_at', $user->getCreatedAt()) ?>
|
||||
|
||||
<?php $smarty->assign('user_submit', st_url_for('@stConfirmForUser?user=' . $user->getId() . '&hash_code=' . $user->getHashCode().'&language='.$languageShortcut, true)) ?>
|
||||
|
||||
<?php $smarty->display('user_send_new_user_to_user_plain_mail.html') ?>
|
||||
@@ -0,0 +1,27 @@
|
||||
<?php use_helper('Date', 'stUrl') ?>
|
||||
|
||||
<?php $smarty->assign('host', $sf_request->getHost()) ?>
|
||||
|
||||
<?php $smarty->assign('user_name', $user->getUsername()) ?>
|
||||
|
||||
<?php $smarty->assign('user_head', $head) ?>
|
||||
|
||||
<?php $smarty->assign('user_foot', $foot) ?>
|
||||
|
||||
<?php $smarty->assign('bg_header_color', $mail_config->get('bg_header_color')) ?>
|
||||
|
||||
<?php $smarty->assign('bg_footer_color', $mail_config->get('bg_footer_color')) ?>
|
||||
|
||||
<?php $smarty->assign('bg_action_color', $mail_config->get('bg_action_color')) ?>
|
||||
|
||||
<?php $smarty->assign('bg_action_link_color', $mail_config->get('bg_action_link_color')) ?>
|
||||
|
||||
<?php $smarty->assign('link_color', $mail_config->get('link_color')) ?>
|
||||
|
||||
<?php $smarty->assign('logo', $mail_config->get('logo')) ?>
|
||||
|
||||
<?php $smarty->assign('user_created_at', date("d-m-Y H:i", strtotime($user->getCreatedAt()))) ?>
|
||||
|
||||
<?php $smarty->assign('user_submit', st_url_for('@stConfirmDeleteForUser?user=' . $user->getId() . '&hash_code=' . $user->getHashCode().'&language='.$languageShortcut, 'absolute=true')) ?>
|
||||
|
||||
<?php $smarty->display('user_send_request_user_confirm_delete_html_mail.html') ?>
|
||||
@@ -0,0 +1,11 @@
|
||||
<?php $smarty->assign('user_name', $user->getUsername()) ?>
|
||||
|
||||
<?php $smarty->assign('user_head', $head) ?>
|
||||
|
||||
<?php $smarty->assign('user_foot', $foot) ?>
|
||||
|
||||
<?php $smarty->assign('user_created_at', $user->getCreatedAt()) ?>
|
||||
|
||||
<?php $smarty->assign('user_submit', link_to(__('Potwierdź usunięcie konta'), '@stConfirmDeleteForUser?user=' . $user->getId() . '&hash_code=' . $user->getHashCode().'&language='.$languageShortcut, 'absolute=true')) ?>
|
||||
|
||||
<?php $smarty->display('user_send_request_user_confirm_delete_plain_mail.html') ?>
|
||||
@@ -0,0 +1,27 @@
|
||||
<?php use_helper('Date', 'stUrl') ?>
|
||||
|
||||
<?php $smarty->assign('host', $sf_request->getHost()) ?>
|
||||
|
||||
<?php $smarty->assign('user_name', $user->getUsername()) ?>
|
||||
|
||||
<?php $smarty->assign('user_head', $head) ?>
|
||||
|
||||
<?php $smarty->assign('user_foot', $foot) ?>
|
||||
|
||||
<?php $smarty->assign('bg_header_color', $mail_config->get('bg_header_color')) ?>
|
||||
|
||||
<?php $smarty->assign('bg_footer_color', $mail_config->get('bg_footer_color')) ?>
|
||||
|
||||
<?php $smarty->assign('bg_action_color', $mail_config->get('bg_action_color')) ?>
|
||||
|
||||
<?php $smarty->assign('bg_action_link_color', $mail_config->get('bg_action_link_color')) ?>
|
||||
|
||||
<?php $smarty->assign('link_color', $mail_config->get('link_color')) ?>
|
||||
|
||||
<?php $smarty->assign('logo', $mail_config->get('logo')) ?>
|
||||
|
||||
<?php $smarty->assign('user_created_at', date("d-m-Y H:i", strtotime($user->getCreatedAt()))) ?>
|
||||
|
||||
<?php $smarty->assign('user_submit', st_url_for('@stConfirmForUser?user=' . $user->getId() . '&hash_code=' . $user->getHashCode().'&language='.$languageShortcut, 'absolute=true')) ?>
|
||||
|
||||
<?php $smarty->display('user_send_request_user_confirm_html_mail.html') ?>
|
||||
@@ -0,0 +1,11 @@
|
||||
<?php $smarty->assign('user_name', $user->getUsername()) ?>
|
||||
|
||||
<?php $smarty->assign('user_head', $head) ?>
|
||||
|
||||
<?php $smarty->assign('user_foot', $foot) ?>
|
||||
|
||||
<?php $smarty->assign('user_created_at', $user->getCreatedAt()) ?>
|
||||
|
||||
<?php $smarty->assign('user_submit', link_to(__('Potwierdź rejestrację'), '@stConfirmForUser?user=' . $user->getId() . '&hash_code=' . $user->getHashCode().'&language='.$languageShortcut, 'absolute=true')) ?>
|
||||
|
||||
<?php $smarty->display('user_send_request_user_confirm_plain_mail.html') ?>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?php use_helper('stUrl'); ?>
|
||||
<?php st_theme_use_stylesheet('stUser.css') ?>
|
||||
|
||||
<?php $smarty = new stSmarty('stUser') ?>
|
||||
|
||||
<?php $smarty->assign('webpage', $webpage) ?>
|
||||
|
||||
<?php $smarty->display('user_show_privacy.html') ?>
|
||||
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
use_helper('stUrl');
|
||||
st_theme_use_stylesheet('stUser.css');
|
||||
$smarty = new stSmarty('stUser');
|
||||
$smarty->assign('webpage', $webpage);
|
||||
$smarty->display('user_show_right_2_cancel.html');
|
||||
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
use_helper('stUrl');
|
||||
st_theme_use_stylesheet('stUser.css');
|
||||
$smarty = new stSmarty('stUser');
|
||||
$smarty->assign('webpage', $webpage);
|
||||
$smarty->display('user_show_privacy.html');
|
||||
@@ -0,0 +1,34 @@
|
||||
{if $is_authenticated && $account_type=="full"}
|
||||
<li class="user-options"><a href="{url_for internal='stUserData/userPanel' secure=true}">{__ text="Moje konto"}</a></li>
|
||||
<li class="user-options"><a href="{url_for internal='stOrder/list' secure=true}">{__ text="Zamówienia"}</a></li>
|
||||
<li class="user-options"><a href="{url_for internal='stDiscountFrontend/discountInfo' secure=true}">{__ text="Rabaty"}</a></li>
|
||||
<li class="user-options"><a href="{url_for internal='stUser/editAccount' secure=true}">{__ text="Moje dane"}</a></li>
|
||||
<li class="user-options user-options-logout"><a href="{url_for internal='stUser/logoutUser' secure=true}">{__ text="Wyloguj"}</a></li>
|
||||
{elseif $is_authenticated && $account_type=="annonymous"}
|
||||
<a class="btn btn-primary user-options" href="{url_for internal='stUser/createPassword' secure=true}">{__ text="Moje konto"}</a>
|
||||
<a class="btn btn-light user-options user-options-logout" href="{url_for internal='stUser/logoutUser' secure=true}">{__ text="Usuń"}</a>
|
||||
{elseif $is_authenticated && $account_type=="external"}
|
||||
<a class="btn btn-primary user-options" href="{url_for internal='stUserData/userPanel' secure=true}">{__ text="Moje konto"}</a>
|
||||
<a class="btn btn-light user-options user-options-logout" href="{url_for internal='stUser/logoutUser' secure=true}">{__ text="Wyloguj"}</a>
|
||||
{else}
|
||||
<a id="ajax-login-button" class="btn btn-primary user-options">{__ text="Zaloguj"}</a>
|
||||
<div class="user-options-text text-muted hidden-xs">{__ text="Nie masz jeszcze konta?"}</div>
|
||||
<a class="btn btn-light user-options user-options-logout" href="{url_for internal='stUser/createAccount' secure=true}" rel="nofollow">{__ text="Załóż konto"}</a>
|
||||
{/if}
|
||||
|
||||
<div class="dropdown visible-xs">{st_get_component module="stLanguageFrontend" component="choose"}</div>
|
||||
<div class="dropdown visible-xs">{st_get_component module="stCurrencyFrontend" component="pickCurrency"}</div>
|
||||
|
||||
{if $is_authenticated}
|
||||
{literal}
|
||||
<script type="text/javascript">
|
||||
jQuery(function ($)
|
||||
{
|
||||
$(document).ready(function()
|
||||
{
|
||||
$(".login-status").css( "display", "block" );
|
||||
});
|
||||
});
|
||||
</script>
|
||||
{/literal}
|
||||
{/if}
|
||||
@@ -0,0 +1,50 @@
|
||||
<div id="st_user-login" class="st_component" style="border:none;">
|
||||
{$form_start}
|
||||
<h5 class="st_title">
|
||||
{__ text="Logowanie"}
|
||||
<span class="st_user_title">{__ text="(Dla stałych klientów)"}</span>
|
||||
</h5>
|
||||
<fieldset>
|
||||
<div class="st_row" id="st_user-login-link">
|
||||
{$remind_password}
|
||||
</div>
|
||||
<div class="st_row">
|
||||
{$error_email}
|
||||
{$label_email}
|
||||
<div class="st_field">
|
||||
{$email}
|
||||
</div>
|
||||
</div>
|
||||
<div class="st_row">
|
||||
{$error_password}
|
||||
{$label_password}
|
||||
<div class="st_field">
|
||||
{$password}
|
||||
</div>
|
||||
</div>
|
||||
<div class="st_row" >
|
||||
<div id="st_button-user-login" class="st_button-container">
|
||||
<div class="st_button st_align-right">
|
||||
<div class="st_button-left">
|
||||
{$login_submit}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<div class="separate">
|
||||
<span> </span> {__ text="lub"} <span> </span>
|
||||
</div>
|
||||
|
||||
<div id="external_google">
|
||||
|
||||
<div class="left label">
|
||||
{__ text="Zaloguj używając"}:
|
||||
{slot name="login_google_basket" hidden="true"}{/slot}
|
||||
<a href="/user/googleSingIn/back/basket"><img id="google_buttton" alt="" src="/images/frontend/theme/default/google.png"></a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
@@ -0,0 +1,21 @@
|
||||
<div id="st_application-user-account" class="st_application">
|
||||
<div id="st_application-user-account-header">
|
||||
<h1 class="st_title" style="width:230px;">
|
||||
{__ text="Zmiana hasła."}
|
||||
</h1>
|
||||
<p>
|
||||
{__ text="Proszę sprawdzić pocztę."}
|
||||
</p>
|
||||
<br class="st_clear_all" />
|
||||
</div>
|
||||
<div class="st_content">
|
||||
|
||||
<p>
|
||||
{__ text="Na podany w czasie rejestracji adres, został wysłany mail z nowymi danymi do konta sklepu."}
|
||||
{$login_link}
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div id="st_application-user-login-foot">
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,73 @@
|
||||
<div id="st_application-user-account" class="st_application">
|
||||
<div id="st_application-user-account-header">
|
||||
<h1 class="st_title">
|
||||
{__ text="Rejestracja"}
|
||||
</h1>
|
||||
<p>
|
||||
{__ text="Nie masz jeszcze założonego konta."}
|
||||
</p>
|
||||
<br class="st_clear_all" />
|
||||
</div>
|
||||
<div class="st_content">
|
||||
{$form_start}
|
||||
<fieldset>
|
||||
<div class="st_row">
|
||||
{$error_email}
|
||||
{$label_email}
|
||||
<div class="st_field">
|
||||
{$input_email}
|
||||
</div>
|
||||
</div>
|
||||
<div class="st_row">
|
||||
{$error_password1}
|
||||
{$label_password1}
|
||||
<div class="st_field">
|
||||
{$input_password1}
|
||||
<script type="text/javascript">
|
||||
jQuery('#st_form-user-password1').pstrength();
|
||||
</script>
|
||||
</div>
|
||||
</div>
|
||||
<div class="st_row">
|
||||
{$error_password2}
|
||||
{$label_password2}
|
||||
<div class="st_field">
|
||||
{$input_password2}
|
||||
</div>
|
||||
</div>
|
||||
{if isset($captcha_on)}
|
||||
<div class="st_row">
|
||||
{$error_captcha}
|
||||
<div style="margin-left:110px; margin-bottom: 2px;">
|
||||
{$get_captcha}
|
||||
</div>
|
||||
{$label_captcha}
|
||||
<div class="st_field">
|
||||
{$input_captcha}
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
<div class="st_row">
|
||||
{$error_privacy}
|
||||
<div class="st_field">
|
||||
{$checkbox_privacy}
|
||||
{$link_to_privacy}
|
||||
</div>
|
||||
</div>
|
||||
<div class="st_row">
|
||||
<div id="st_button-user-account" class="st_button-container" style="margin-right:10px;">
|
||||
<div class="st_button st_align-right">
|
||||
<div class="st_button-left">
|
||||
{$register_submit}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
<div id="st_application-user-account-remind">{$remind_password_link}</div>
|
||||
|
||||
<div id="st_application-user-login-foot">
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,22 @@
|
||||
<div style="padding:10px 0px 5px 20px;width:600px;">
|
||||
<div id="head">
|
||||
<div style="margin:10px 0px 7px 0px;">
|
||||
{__ text="Twoje konto zostało utworzone"}
|
||||
</div>
|
||||
<div style="margin:10px 0px 7px 0px;">
|
||||
{__ text="dnia:"} {$day}, {__ text="o godzinie:"} {$hour}
|
||||
</div>
|
||||
<br style="clear:both;"/>
|
||||
</div>
|
||||
<div style="background:url(images/background_content.png) top left repeat-x;background-color:#fff;padding:25px 0px 0px 12px;">
|
||||
<div style="border-bottom:1px solid #efefef;text-align:left;font-size:14px;color:#404040; padding:0px 0px 7px 0px;">
|
||||
{__ text="Oto Twoje dane dostępowe"}
|
||||
</div>
|
||||
<div style="text-align:left;font-size:14px;color:#404040;margin:15px 0px;">
|
||||
{__ text="Login:"} {$login}
|
||||
</div>
|
||||
<div style="text-align:left;font-size:14px;color:#404040;margin:15px 0px;">
|
||||
{__ text="Hasło:"} {$password}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,66 @@
|
||||
<div id="st_application-user-account" class="st_application">
|
||||
<div id="st_application-user-account-header">
|
||||
<h1 class="st_title">
|
||||
{__ text="Zmiana hasła"}
|
||||
</h1>
|
||||
<p>
|
||||
{__ text="Podaj nowe hasło dla konta"}: <b>{$login}</b><br>
|
||||
</p>
|
||||
<br class="st_clear_all" />
|
||||
</div>
|
||||
<div class="st_content">
|
||||
{$form_start}
|
||||
<fieldset>
|
||||
<div class="st_row">
|
||||
{$error_email}
|
||||
{$label_email}
|
||||
<div class="st_field">
|
||||
{$input_email}
|
||||
</div>
|
||||
</div>
|
||||
<div class="st_row">
|
||||
{$error_password1}
|
||||
{$label_password1}
|
||||
<div class="st_field">
|
||||
{$input_password1}
|
||||
<script type="text/javascript">
|
||||
jQuery('#st_form-user-password1').pstrength();
|
||||
</script>
|
||||
</div>
|
||||
</div>
|
||||
<div class="st_row">
|
||||
{$error_password2}
|
||||
{$label_password2}
|
||||
<div class="st_field">
|
||||
{$input_password2}
|
||||
</div>
|
||||
</div>
|
||||
{if isset($captcha_on)}
|
||||
<div class="st_row">
|
||||
{$error_captcha}
|
||||
<div style="margin-left:110px; margin-bottom: 2px;">
|
||||
{$get_captcha}
|
||||
</div>
|
||||
{$label_captcha}
|
||||
<div class="st_field">
|
||||
{$input_captcha}
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
<div class="st_row">
|
||||
<div id="st_button-user-account" class="st_button-container" style="margin-right:10px;">
|
||||
<div class="st_button st_align-right">
|
||||
<div class="st_button-left">
|
||||
{$register_new_password}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
{$hidden_hash_code}
|
||||
</form>
|
||||
</div>
|
||||
<div id="st_application-user-login-foot">
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,73 @@
|
||||
<div id="st_application-user-account" class="st_application">
|
||||
<div id="st_application-user-account-header">
|
||||
<h1 class="st_title">
|
||||
{__ text="Rejestracja"}
|
||||
</h1>
|
||||
<p>
|
||||
{__ text="Nie masz jeszcze założonego konta. Wystarczy, że podasz hasło dla loginu"}: <b>{$login}</b><br>
|
||||
{__ text="Uzyskasz w ten sposób pełne konto z dostępem do swoich danych i informacji o statusach zamówienia."}
|
||||
</p>
|
||||
<br class="st_clear_all" />
|
||||
</div>
|
||||
<div class="st_content">
|
||||
{$form_start}
|
||||
<fieldset>
|
||||
<div class="st_row">
|
||||
{$error_email}
|
||||
{$label_email}
|
||||
<div class="st_field">
|
||||
{$input_email}
|
||||
{$input_hidden_email}
|
||||
</div>
|
||||
</div>
|
||||
<div class="st_row">
|
||||
{$error_password1}
|
||||
{$label_password1}
|
||||
<div class="st_field">
|
||||
{$input_password1}
|
||||
<script type="text/javascript">
|
||||
jQuery('#st_form-user-password1').pstrength();
|
||||
</script>
|
||||
</div>
|
||||
</div>
|
||||
<div class="st_row">
|
||||
{$error_password2}
|
||||
{$label_password2}
|
||||
<div class="st_field">
|
||||
{$input_password2}
|
||||
</div>
|
||||
</div>
|
||||
{if isset($captcha_on)}
|
||||
<div class="st_row">
|
||||
{$error_captcha}
|
||||
<div style="margin-left:110px; margin-bottom: 2px;">
|
||||
{$get_captcha}
|
||||
</div>
|
||||
{$label_captcha}
|
||||
<div class="st_field">
|
||||
{$input_captcha}
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
<div class="st_row">
|
||||
{$error_privacy}
|
||||
<div class="st_field">
|
||||
{$checkbox_privacy}
|
||||
{$link_to_privacy}
|
||||
</div>
|
||||
</div>
|
||||
<div class="st_row">
|
||||
<div id="st_button-user-account" class="st_button-container" style="margin-right:10px;">
|
||||
<div class="st_button st_align-right">
|
||||
<div class="st_button-left">
|
||||
{$register_submit}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
<div id="st_application-user-login-foot">
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,75 @@
|
||||
<div id="st_user-edit_account" class="st_application">
|
||||
<h1 class="st_title">
|
||||
<div id="st_user-tag">
|
||||
{$user_panel_icon}
|
||||
</div>
|
||||
{$my_account} / {__ text="Dane logowania"}
|
||||
</h1>
|
||||
{$user_panel_menu}
|
||||
<div id="st_user-editaccount" >
|
||||
{$form_start}
|
||||
<fieldset>
|
||||
<h5 class="st_title">
|
||||
{__ text="Edytuj e-mail (login)"}
|
||||
</h5>
|
||||
<div class="st_row">
|
||||
{$error_email}
|
||||
{$label_email}
|
||||
<div class="st_field">
|
||||
{$input_email}
|
||||
</div>
|
||||
</div>
|
||||
<div class="st_row_last">
|
||||
<div id="st_button-user-login" class="st_button-container">
|
||||
<div class="st_button st_align-right">
|
||||
<div class="st_button-left">
|
||||
{$update_email_submit}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
</form>
|
||||
<br />
|
||||
{$form_start_2}
|
||||
<fieldset>
|
||||
<h5 class="st_title">
|
||||
{__ text="Zmień hasło"}
|
||||
</h5>
|
||||
<div class="st_row">
|
||||
{$label_user_oldpassword}
|
||||
{$error_user_oldpassword}
|
||||
<div class="st_field">
|
||||
{$input_user_oldpassword}
|
||||
</div>
|
||||
</div>
|
||||
<div class="st_row">
|
||||
{$label_user_password1}
|
||||
{$error_user_password1}
|
||||
<div class="st_field">
|
||||
{$input_user_password1}
|
||||
<script type="text/javascript">
|
||||
jQuery('#st_form-user-password1').pstrength();
|
||||
</script>
|
||||
</div>
|
||||
</div>
|
||||
<div class="st_row">
|
||||
{$label_user_password2}
|
||||
{$error_user_password2}
|
||||
<div class="st_field">
|
||||
{$input_user_password2}
|
||||
</div>
|
||||
</div>
|
||||
<div class="st_row_last">
|
||||
<div id="st_button-user-login" class="st_button-container">
|
||||
<div class="st_button st_align-right">
|
||||
<div class="st_button-left">
|
||||
{$update_password_submit}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,43 @@
|
||||
<div id="st_application-user-account" class="st_application">
|
||||
<div id="st_application-user-account-header">
|
||||
<h1 class="st_title" style="width:230px;">
|
||||
{__ text="Rejestracja danych."}
|
||||
</h1>
|
||||
|
||||
<p>
|
||||
{__ text="Potwierdzenie autentyczności adresu."}
|
||||
</p>
|
||||
|
||||
<br class="st_clear_all" />
|
||||
</div>
|
||||
<div class="st_content">
|
||||
|
||||
{if $confirm == '1'}
|
||||
|
||||
<p>
|
||||
{__ text="Dziękujemy za dokonanie rejestracji. Twoje konto zostało zaktywowane i jest w pełni funkcjonalne. Zaloguj się aby uzyskać dostęp do konta użytkownika."}
|
||||
</p>
|
||||
|
||||
{/if}
|
||||
|
||||
{if $confirm == '0'}
|
||||
|
||||
<p>
|
||||
{__ text="Wystąpił problem z rejestracją użytkownika."}
|
||||
</p>
|
||||
|
||||
{/if}
|
||||
|
||||
{if $confirm == '2'}
|
||||
|
||||
<p>
|
||||
{__ text="Twoje konto zostało już wcześniej potwierdzone."}
|
||||
</p>
|
||||
|
||||
{/if}
|
||||
|
||||
|
||||
</div>
|
||||
<div id="st_application-user-login-foot">
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,8 @@
|
||||
<ul id="st_user-login_stat">
|
||||
<li class="st_first">
|
||||
{$login}
|
||||
</li>
|
||||
<li class="st_last">
|
||||
{$logout}
|
||||
</li>
|
||||
</ul>
|
||||
@@ -0,0 +1,74 @@
|
||||
<div id="st_application-user-login" class="st_application" >
|
||||
<div id="st_application-user-login-header">
|
||||
<h1 class="st_title">
|
||||
{__ text="Logowanie"}
|
||||
</h1>
|
||||
<p>
|
||||
{__ text="Zaloguj się aby uzyskać pełen dostęp do zamówień i danych konta."}
|
||||
</p>
|
||||
<br class="st_clear_all" />
|
||||
</div>
|
||||
<div class="st_content">
|
||||
<div id="st_application-user-login-register">
|
||||
{$new_user_icon}
|
||||
<div class="st_button">
|
||||
<div class="st_button-left">
|
||||
{$register_link}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{$form_start}
|
||||
<fieldset>
|
||||
<div class="st_row">
|
||||
{$error_email}
|
||||
{$label_email}
|
||||
<div class="st_field">
|
||||
{$input_email}
|
||||
</div>
|
||||
</div>
|
||||
<div class="st_row">
|
||||
{$error_password}
|
||||
{$label_password}
|
||||
<div class="st_field">
|
||||
{$input_password}
|
||||
</div>
|
||||
</div>
|
||||
<div class="st_row">
|
||||
<div id="st_button-user-login_success" class="st_button-container">
|
||||
<div class="st_button st_align-right">
|
||||
<div class="st_button-left">
|
||||
{$login_submit}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
|
||||
<div id="st_application-user-login-remind">
|
||||
<div id="st_application-user-login-hidden_line">
|
||||
</div>
|
||||
{$remind_password_link}
|
||||
</div>
|
||||
|
||||
<div class="separate">
|
||||
<span> </span> {__ text="lub"} <span> </span>
|
||||
</div>
|
||||
|
||||
<div id="external_google">
|
||||
|
||||
<div class="left label">
|
||||
{__ text="Zaloguj używając"}:
|
||||
{slot name="login_google_user" hidden="true"}{/slot}
|
||||
<a href="/user/googleSingIn/back/create"><img id="google_buttton" alt="" src="/images/frontend/theme/default/google.png"></a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</form>
|
||||
<br class="st_clear_all" />
|
||||
</div>
|
||||
<div id="st_application-user-login-foot">
|
||||
{$privacy_link}
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,30 @@
|
||||
<div id="st_application-user-login" class="st_application" >
|
||||
<div id="st_application-user-login-header">
|
||||
<h1 class="st_title">
|
||||
{__ text="Wylogowano"}
|
||||
</h1>
|
||||
<p>
|
||||
|
||||
</p>
|
||||
<br class="st_clear_all" />
|
||||
</div>
|
||||
{literal}
|
||||
<script type="text/javascript">
|
||||
|
||||
function delayer()
|
||||
{
|
||||
window.location = "/";
|
||||
}
|
||||
setTimeout('delayer()', 5000);
|
||||
|
||||
</script>
|
||||
{/literal}
|
||||
<div class="st_content">
|
||||
|
||||
<p style="text-align:center;">{__ text="Pomyślnie wylogowano użytkownika"}:</p>
|
||||
<p style="text-align:center; font-size:14px;"><b>{$username}</b></p>
|
||||
<p style="text-align:center;">{__ text="Za chwilę nastąpi przekierowanie na stronę główną."}</p>
|
||||
|
||||
<br class="st_clear_all" />
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,46 @@
|
||||
<div id="st_application-user-account" class="st_application">
|
||||
<div id="st_application-user-account-header">
|
||||
<h1 class="st_title" style="width:230px;">
|
||||
{__ text="Rejestracja danych."}
|
||||
</h1>
|
||||
<p>
|
||||
{__ text="Uzupełnij dane konta."}
|
||||
</p>
|
||||
<br class="st_clear_all" />
|
||||
</div>
|
||||
<div class="st_content">
|
||||
|
||||
<p>
|
||||
{__ text="W związku ze zmianą oprogramowania naszego sklepu, prosimy o podanie adresu email, który od tej pory będzie stanowił login do konta."}
|
||||
</p>
|
||||
{$form_start}
|
||||
<fieldset>
|
||||
<div class="st_row">
|
||||
{$error_email}
|
||||
{$label_email}
|
||||
<div class="st_field">
|
||||
{$input_email}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="st_row">
|
||||
<div id="st_button-user-account" class="st_button-container" style="margin-right:40px;">
|
||||
<div class="st_button st_align-right">
|
||||
<div class="st_button-left">
|
||||
{$register_submit}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{$hidden_user_id}
|
||||
{$hidden_old_login}
|
||||
{$hidden_password}
|
||||
|
||||
</fieldset>
|
||||
|
||||
</form>
|
||||
</div>
|
||||
<div id="st_application-user-login-foot">
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,4 @@
|
||||
<div id="privacy_overlay">
|
||||
<div class="privacy_overlay_content"></div>
|
||||
</div>
|
||||
{__ text="Akceptuję"} <a href="#active_overlay" id="active_overlay">{__ text="politykę prywatności"}</a>
|
||||
@@ -0,0 +1,52 @@
|
||||
<div id="st_application-user-remind" class="st_application">
|
||||
<div id="st_application-user-remind-header">
|
||||
<h1 class="st_title">
|
||||
{__ text="Przypomnij hasło"}
|
||||
</h1>
|
||||
<p>
|
||||
{__ text="Podaj adres email, który służy jako login użytkownika, zostanie wysłane na niego link do zmiany hasła."}
|
||||
</p>
|
||||
<br class="st_clear_all" />
|
||||
</div>
|
||||
<div class="st_content">
|
||||
{if isset($not_send_true)}
|
||||
{$form_start}
|
||||
<fieldset>
|
||||
<div class="st_row">
|
||||
{$label_email}
|
||||
{$error_email}
|
||||
<div class="st_field">
|
||||
{$input_email}
|
||||
</div>
|
||||
</div>
|
||||
{if isset($captcha_on)}
|
||||
<div class="st_row">
|
||||
{$error_captcha}
|
||||
<div style="margin-left:110px; margin-bottom: 2px;">
|
||||
{$get_captcha}
|
||||
</div>
|
||||
{$label_captcha}
|
||||
<div class="st_field">
|
||||
{$input_captcha}
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
<div id="st_button-user-remind" class="st_button-container" style="margin-right:15px;">
|
||||
<div class="st_button st_align-right">
|
||||
<div class="st_button-left">
|
||||
{$remind_submit}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
</form>
|
||||
{else}
|
||||
<div id="st_application-user-remind-message">
|
||||
{$email_send_to}
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
<div id="st_application-user-remind-foot">
|
||||
{$privacy_link}
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,48 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="pl" lang="pl">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body style="background-color:#fff; font-family:Helvetica,Verdana,Arial,sans-serif; line-height:18px; font-size:1em;"><div style="margin: 0px auto; background-color:#fff;"><br><div style="width:700px; margin:0px auto;"><div style="background:url(http://{$host}/images/frontend/theme/default/mail/frame_mail_top.png?version=1); height:30px"></div>
|
||||
|
||||
<div style="background-color:#fff; padding:0px 25px 0px 25px; border-left:1px solid #d0d2d8; border-right:1px solid #d0d2d8;">
|
||||
<div style="font-family:Verdana,Arial,Helvetica,sans-serif; line-height:18px; font-size:10px;">
|
||||
{$user_head}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div style="min-height:400px; padding:0px 25px 0px 25px; text-align:justify; border-left:1px solid #d0d2d8; border-right:1px solid #d0d2d8;">
|
||||
|
||||
<div style="float:left;font-size:18px;color:#576278;">
|
||||
{__ text="Link do zmiany hasła dla konta:"}
|
||||
</div>
|
||||
|
||||
<div style="float:right; font-size:12px; color:#576278;">
|
||||
{__ text="Data wysłania linka"}: <span style="color:#404040;">{$date}<span>
|
||||
</div>
|
||||
|
||||
<br style="clear:both;"/>
|
||||
|
||||
<div style="margin:10px 0px 7px 0px">
|
||||
|
||||
<div style="font-family:Verdana,Arial,Helvetica,sans-serif; line-height:18px; font-size:10px;">
|
||||
{__ text="Skorzystaj z linku poniżej aby dokonać zmiany hasła."}
|
||||
</div>
|
||||
|
||||
<br style="clear:both">
|
||||
|
||||
<div style="height:20px;font-size:12px;color:#576278;">
|
||||
{$user_submit}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div style="background-color:#ECECEE; padding:0px 25px 0px 25px; border-left:1px solid #d0d2d8; border-right:1px solid #d0d2d8;">
|
||||
<div style="font-family:Verdana,Arial,Helvetica,sans-serif; line-height:18px; font-size:10px;">
|
||||
{$user_foot}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div style="background:url(http://{$host}/images/frontend/theme/default/mail/frame_mail_bottom.png?version=1); height:30px"></div></div></div></body></html>
|
||||
@@ -0,0 +1,4 @@
|
||||
{__ text="Twoje hasło do konta zostało zmienione."}
|
||||
|
||||
{__ text="Twój login"}: {$user_name}
|
||||
{__ text="Twoje hasło"}: {$user_password}
|
||||
@@ -0,0 +1,58 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="pl" lang="pl">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body style="background-color:#fff; font-family:Helvetica,Verdana,Arial,sans-serif; line-height:18px; font-size:1em;"><div style="margin: 0px auto; background-color:#fff;"><br><div style="width:700px; margin:0px auto;"><div style="background:url(http://{$host}/images/frontend/theme/default/mail/frame_mail_top.png?version=1); height:30px"></div>
|
||||
|
||||
<div style="background-color:#fff; padding:0px 25px 0px 25px; border-left:1px solid #d0d2d8; border-right:1px solid #d0d2d8;">
|
||||
<div style="font-family:Verdana,Arial,Helvetica,sans-serif; line-height:18px; font-size:10px;">
|
||||
{$user_head}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div style="min-height:400px; padding:0px 25px 0px 25px; text-align:justify; border-left:1px solid #d0d2d8; border-right:1px solid #d0d2d8;">
|
||||
|
||||
<div style="float:left;font-size:18px;color:#576278;">
|
||||
{__ text="Twoje hasło do konta zostało zmienione."}
|
||||
</div>
|
||||
|
||||
<div style="float:right; font-size:12px; color:#576278;">
|
||||
{__ text="Data modyfikacji konta"}: <span style="color:#404040;">{$date}<span>
|
||||
</div>
|
||||
|
||||
<br style="clear:both;"/>
|
||||
|
||||
<div style="margin:10px 0px 7px 0px">
|
||||
|
||||
<div style="font-family:Verdana,Arial,Helvetica,sans-serif; line-height:18px; font-size:10px;">
|
||||
{$user_content_head}
|
||||
</div>
|
||||
|
||||
<div style="width:300px;">
|
||||
<span style="font-size:12px; color:#576278;">{__ text="Aktualne dane dostępowe do konta"}:</span><br>
|
||||
<br>
|
||||
<span style="font-size:12px;color:#576278;">{__ text="Login"}: </span><span style="font-size:12px;color:#404040;">{$user_name}</span><br>
|
||||
</div>
|
||||
|
||||
<br style="clear:both">
|
||||
|
||||
<div style="height:20px;font-size:12px;color:#576278;">
|
||||
{$user_link}
|
||||
</div>
|
||||
|
||||
<div style="font-family:Verdana,Arial,Helvetica,sans-serif; line-height:18px; font-size:10px;">
|
||||
{$user_content_foot}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div style="background-color:#ECECEE; padding:0px 25px 0px 25px; border-left:1px solid #d0d2d8; border-right:1px solid #d0d2d8;">
|
||||
<div style="font-family:Verdana,Arial,Helvetica,sans-serif; line-height:18px; font-size:10px;">
|
||||
{$user_foot}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div style="background:url(http://{$host}/images/frontend/theme/default/mail/frame_mail_bottom.png?version=1); height:30px"></div></div></div></body></html>
|
||||
@@ -0,0 +1,3 @@
|
||||
{__ text="Twoje hasło do konta zostało zmienione."}
|
||||
|
||||
{__ text="Twój login"}: {$user_name}
|
||||
@@ -0,0 +1,51 @@
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="pl" lang="pl">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body style="background-color:#fff; font-family:Helvetica,Verdana,Arial,sans-serif; line-height:18px; font-size:1em;"><div style="margin: 0px auto; background-color:#fff;"><br><div style="width:700px; margin:0px auto;"><div style="background:url(http://{$host}/images/frontend/theme/default/mail/frame_mail_top.png?version=1); height:30px"></div>
|
||||
|
||||
<div style="background-color:#fff; padding:0px 25px 0px 25px; border-left:1px solid #d0d2d8; border-right:1px solid #d0d2d8;">
|
||||
<div style="font-family:Verdana,Arial,Helvetica,sans-serif; line-height:18px; font-size:10px;">
|
||||
{$user_head}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div style="min-height:400px; padding:0px 25px 0px 25px; text-align:justify; border-left:1px solid #d0d2d8; border-right:1px solid #d0d2d8;">
|
||||
|
||||
<div style="float:left;font-size:18px;color:#576278;">
|
||||
{__ text="Rejestracja nowego klienta"}
|
||||
</div>
|
||||
|
||||
<div style="float:right; font-size:12px; color:#576278;">
|
||||
{__ text="Data założenia konta"}: <span style="color:#404040;">{$user_created_at}<span>
|
||||
</div>
|
||||
|
||||
<br style="clear:both;"/>
|
||||
|
||||
<div style="margin:10px 0px 7px 0px">
|
||||
<br/><br/>
|
||||
<div style="width:300px;">
|
||||
<span style="font-size:12px; color:#576278;">{__ text="Informacje o koncie klienta"}:</span><br>
|
||||
|
||||
<span style="font-size:12px;color:#576278;">{__ text="Numer ID"}: </span><span style="font-size:12px;color:#404040; font-weight:bold;">{$user_id}</span><br>
|
||||
<span style="font-size:12px;color:#576278;">{__ text="Login"}: </span><span style="font-size:12px;color:#404040; font-weight:bold;">{$user_name}</span><br>
|
||||
</div>
|
||||
|
||||
<br style="clear:both">
|
||||
|
||||
|
||||
<div style="height:20px;font-size:12px;color:#576278;">
|
||||
{$user_link}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div style="background-color:#ECECEE; padding:0px 25px 0px 25px; border-left:1px solid #d0d2d8; border-right:1px solid #d0d2d8;">
|
||||
<div style="font-family:Verdana,Arial,Helvetica,sans-serif; line-height:18px; font-size:10px;">
|
||||
{$user_foot}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div style="background:url(http://{$host}/images/frontend/theme/default/mail/frame_mail_bottom.png?version=1); height:30px"></div></div></div></body></html>
|
||||
@@ -0,0 +1,5 @@
|
||||
{__ text="W sklepie zarejestrował się nowy klient." langCatalogue="_backend"}
|
||||
|
||||
{__ text="ID klienta" langCatalogue="_backend"}: {$user_id}
|
||||
{__ text="Login klienta" langCatalogue="_backend"}: {$user_name}
|
||||
{__ text="Data założenia konta" langCatalogue="_backend"}: {$user_created_at}
|
||||
@@ -0,0 +1,57 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="pl" lang="pl">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body style="background-color:#fff; font-family:Helvetica,Verdana,Arial,sans-serif; line-height:18px; font-size:1em;"><div style="margin: 0px auto; background-color:#fff;"><br><div style="width:700px; margin:0px auto;"><div style="background:url(http://{$host}/images/frontend/theme/default/mail/frame_mail_top.png?version=1); height:30px"></div>
|
||||
|
||||
<div style="background-color:#fff; padding:0px 25px 0px 25px; border-left:1px solid #d0d2d8; border-right:1px solid #d0d2d8;">
|
||||
<div style="font-family:Verdana,Arial,Helvetica,sans-serif; line-height:18px; font-size:10px;">
|
||||
{$user_head}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div style="min-height:400px; padding:0px 25px 0px 25px; text-align:justify; border-left:1px solid #d0d2d8; border-right:1px solid #d0d2d8;">
|
||||
|
||||
<div style="float:left;font-size:18px;color:#576278;">
|
||||
{__ text="Potwierdzenie rejestracji"}
|
||||
</div>
|
||||
|
||||
<div style="float:right; font-size:12px; color:#576278;">
|
||||
{__ text="Data założenia konta"}: <span style="color:#404040;">{$user_created_at}<span>
|
||||
</div>
|
||||
|
||||
<br style="clear:both;"/>
|
||||
|
||||
<div style="margin:10px 0px 7px 0px">
|
||||
|
||||
<div style="font-family:Verdana,Arial,Helvetica,sans-serif; line-height:18px; font-size:10px;">
|
||||
{$user_content_head}
|
||||
</div>
|
||||
|
||||
<div style="width:300px; margin-top:10px;">
|
||||
<span style="font-size:12px; color:#576278;">{__ text="Dane dostępowe do konta"}:</span><br>
|
||||
<span style="font-size:12px;color:#576278;">{__ text="Login"}: </span><span style="font-size:12px;color:#404040; font-weight:bold;">{$user_name}</span><br>
|
||||
</div>
|
||||
|
||||
<br style="clear:both">
|
||||
|
||||
<div style="height:20px;font-size:12px;color:#576278;">
|
||||
{$user_submit}
|
||||
</div>
|
||||
|
||||
<div style="font-family:Verdana,Arial,Helvetica,sans-serif; line-height:18px; font-size:10px;">
|
||||
{$user_content_foot}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div style="background-color:#ECECEE; padding:0px 25px 0px 25px; border-left:1px solid #d0d2d8; border-right:1px solid #d0d2d8;">
|
||||
<div style="font-family:Verdana,Arial,Helvetica,sans-serif; line-height:18px; font-size:10px;">
|
||||
{$user_foot}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div style="background:url(http://{$host}/images/frontend/theme/default/mail/frame_mail_bottom.png?version=1); height:30px"></div></div></div></body></html>
|
||||
@@ -0,0 +1,11 @@
|
||||
{$user_head}
|
||||
|
||||
{$user_content_head}
|
||||
|
||||
{__ text="Twoje konto w sklepie zostało założone."}
|
||||
{__ text="Twój login"}: {$user_name}
|
||||
{__ text="Data założenia konta"}: {$user_created_at}
|
||||
|
||||
{$user_content_foot}
|
||||
|
||||
{$user_foot}
|
||||
@@ -0,0 +1,52 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="pl" lang="pl">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body style="background-color:#fff; font-family:Helvetica,Verdana,Arial,sans-serif; line-height:18px; font-size:1em;"><div style="margin: 0px auto; background-color:#fff;"><br><div style="width:700px; margin:0px auto;"><div style="background:url(http://{$host}/images/frontend/theme/default/mail/frame_mail_top.png?version=1); height:30px"></div>
|
||||
|
||||
<div style="background-color:#fff; padding:0px 25px 0px 25px; border-left:1px solid #d0d2d8; border-right:1px solid #d0d2d8;">
|
||||
<div style="font-family:Verdana,Arial,Helvetica,sans-serif; line-height:18px; font-size:10px;">
|
||||
{$user_head}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div style="min-height:400px; padding:0px 25px 0px 25px; text-align:justify; border-left:1px solid #d0d2d8; border-right:1px solid #d0d2d8;">
|
||||
|
||||
<div style="float:left;font-size:18px;color:#576278;">
|
||||
{__ text="Prośba o potwierdzenie rejestracji konta."}
|
||||
</div>
|
||||
|
||||
<div style="float:right; font-size:12px; color:#576278;">
|
||||
{__ text="Data założenia konta"}: <span style="color:#404040;">{$user_created_at}<span>
|
||||
</div>
|
||||
|
||||
<br style="clear:both;"/>
|
||||
|
||||
<div style="margin:10px 0px 7px 0px">
|
||||
|
||||
<div style="font-family:Verdana,Arial,Helvetica,sans-serif; line-height:18px; font-size:10px;">
|
||||
{__ text="Twoje konto wymaga potwierdzenia. Skorzystaj z linku poniżej aby potwierdzić dane."}
|
||||
</div>
|
||||
|
||||
<div style="width:300px; margin-top:10px;">
|
||||
<span style="font-size:12px;color:#576278;">{__ text="Login"}: </span><span style="font-size:12px;color:#404040; font-weight:bold;">{$user_name}</span><br>
|
||||
</div>
|
||||
|
||||
<br style="clear:both">
|
||||
|
||||
<div style="height:20px;font-size:12px;color:#576278;">
|
||||
{$user_submit}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div style="background-color:#ECECEE; padding:0px 25px 0px 25px; border-left:1px solid #d0d2d8; border-right:1px solid #d0d2d8;">
|
||||
<div style="font-family:Verdana,Arial,Helvetica,sans-serif; line-height:18px; font-size:10px;">
|
||||
{$user_foot}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div style="background:url(http://{$host}/images/frontend/theme/default/mail/frame_mail_bottom.png?version=1); height:30px"></div></div></div></body></html>
|
||||
@@ -0,0 +1,9 @@
|
||||
{$user_head}
|
||||
|
||||
{__ text="Twoje konto w sklepie zostało założone."}
|
||||
{__ text="Twój login"}: {$user_name}
|
||||
{__ text="Twoje hasło"}: {$user_password}
|
||||
{__ text="Data założenia konta"}: {$user_created_at}
|
||||
{$user_submit}
|
||||
|
||||
{$user_foot}
|
||||
@@ -0,0 +1,6 @@
|
||||
<div id="" style="margin: 10px;">
|
||||
<div class="st_title">
|
||||
<h2>{$webpage->getOptName()}</h2>
|
||||
</div>
|
||||
{$webpage->getOptContent()}
|
||||
</div>
|
||||
@@ -0,0 +1,39 @@
|
||||
<div id="st_application-user-account" class="st_application">
|
||||
<div id="st_application-user-account-header">
|
||||
<h1 class="st_title" style="width:230px;">
|
||||
{__ text="Rejestracja danych."}
|
||||
</h1>
|
||||
<p>
|
||||
{__ text="Prośba o potwierdzenie rejestracji konta."}
|
||||
</p>
|
||||
<br class="st_clear_all" />
|
||||
</div>
|
||||
<div class="st_content">
|
||||
|
||||
<p style="text-align:center;">{__ text="Dziękujemy za dokonanie rejestracji. Proszę sprawdzić pocztę, na adres:"}</p>
|
||||
<p style="text-align:center; font-size:14px;"><b>{$username}</b></p>
|
||||
<p style="text-align:center;">{__ text="została wysłana prośba o potwierdzenie konta."}</p>
|
||||
|
||||
<div style="width:230px; margin: 0px auto">
|
||||
<div class="st_button st_align-left">
|
||||
<div class="st_button-left">
|
||||
{$button_back}
|
||||
</div>
|
||||
</div>
|
||||
{if $show_basket != 0}
|
||||
<div class="st_button st_align-right">
|
||||
<div class="st_button-left">
|
||||
{$go_to_basket_link}
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<br class="st_clear_all" />
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div id="st_application-user-login-foot">
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,40 @@
|
||||
<div id="st_application-user-account" class="st_application">
|
||||
<div id="st_application-user-account-header">
|
||||
<h1 class="st_title" style="width:230px;">
|
||||
{__ text="Rejestracja danych."}
|
||||
</h1>
|
||||
<p>
|
||||
{__ text="Prośba o potwierdzenie rejestracji konta."}
|
||||
</p>
|
||||
<br class="st_clear_all" />
|
||||
</div>
|
||||
<div class="st_content">
|
||||
|
||||
<p style="text-align:center;">{__ text="Twoje konto nie zostało jeszcze potwierdzone. Proszę sprawdzić pocztę, na adres:"}</p>
|
||||
<p style="text-align:center; font-size:14px;"><b>{$username}</b></p>
|
||||
<p style="text-align:center;">{__ text="została wysłana prośba o potwierdzenie konta."}</p>
|
||||
|
||||
<div style="width:230px; margin: 0px auto">
|
||||
<div class="st_button st_align-left">
|
||||
<div class="st_button-left">
|
||||
{$button_back}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{if $show_basket != 0}
|
||||
<div class="st_button st_align-right">
|
||||
<div class="st_button-left">
|
||||
{$go_to_basket_link}
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<br class="st_clear_all" />
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div id="st_application-user-login-foot">
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,104 @@
|
||||
<div id="basket-login-user" class="roundies box_form">
|
||||
<h3>{__ text="Logowanie"}</h3>
|
||||
|
||||
<div id="st_user-login">
|
||||
|
||||
<div id="external_google">
|
||||
|
||||
{if $login_google_on == 1}
|
||||
<div id="st_button-user-login-google" class="buttons left">
|
||||
<a href="{$google_url}" class="regular roundies">
|
||||
<img src="{image_path image='google.png'}" alt=""/>
|
||||
</a>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
{slot name="login_google_basket" hidden="true"}{/slot}
|
||||
|
||||
</div>
|
||||
|
||||
<div id="st_button-user-login-account" class="buttons left">
|
||||
<a class="regular roundies">
|
||||
<img src="{image_path image='user_login.png'}" alt=""/> <span class="login_text">{__ text="zaloguj się" langCatalogue="stUser"}</span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
|
||||
<div id="basket-login-form" {if !$login_show_error} style="display:none;" {/if} >
|
||||
{$form_start}
|
||||
<fieldset>
|
||||
|
||||
<div class="st_row">
|
||||
<div class="error_tooltip">
|
||||
{if $error_email!=""}
|
||||
<img src="{image_path image='exclamation.png'}" title="{$error_email}" alt="{$error_email}">
|
||||
{/if}
|
||||
</div>
|
||||
<div class="st_field">
|
||||
{$label_email}
|
||||
{$email}
|
||||
</div>
|
||||
</div>
|
||||
<div class="st_row">
|
||||
<div class="error_tooltip">
|
||||
{if $error_password!=""}
|
||||
<img src="{image_path image='exclamation.png'}" title="{$error_password}" alt="{$error_password}">
|
||||
{/if}
|
||||
</div>
|
||||
<div class="st_field left">
|
||||
{$label_password}
|
||||
{$password}
|
||||
|
||||
</div>
|
||||
|
||||
<div class="st_field left">
|
||||
<div id="st_button-user-login" class="buttons right">
|
||||
<button type="submit" class="regular roundies" name="submit_login">
|
||||
{__ text="Zaloguj"}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
|
||||
{if $login_show_error}
|
||||
<div class="st_row" style="padding-top:10px;">
|
||||
{$remind_password}
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{literal}
|
||||
<script type="text/javascript">
|
||||
jQuery(function ($)
|
||||
{
|
||||
$(document).ready(function()
|
||||
{
|
||||
$("label").inFieldLabels();
|
||||
|
||||
$('#st_button-user-login-account').mouseover(function(){
|
||||
$("#basket-login-form").show();
|
||||
});
|
||||
|
||||
$('#st_button-user-login-account').click(function(){
|
||||
$("#basket-login-form").toggle();
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
|
||||
});
|
||||
</script>
|
||||
{/literal}
|
||||
@@ -0,0 +1,20 @@
|
||||
{set layout="one_column_layout"}
|
||||
|
||||
<div id="st_application-user-account" class="box roundies">
|
||||
|
||||
<div class="title">
|
||||
<h2>{__ text="Zmiana hasła."}</h2>
|
||||
<p>{__ text="Proszę sprawdzić pocztę."}</p>
|
||||
</div>
|
||||
|
||||
<div class="st_content">
|
||||
|
||||
<p>
|
||||
{__ text="Na adres"} {$email} {__ text="została wysłana wiadomość z potwierdzeniem zmiany hasła."}<br/><br/>
|
||||
{$login_link}
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div id="st_application-user-login-foot">
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,144 @@
|
||||
{set layout="one_column_layout"}
|
||||
|
||||
<div id="st_application-user-account" class="box roundies">
|
||||
|
||||
<div class="title">
|
||||
<h2>{__ text="Rejestracja"}</h2>
|
||||
<p>{__ text="Podaj dane konta."}</p>
|
||||
</div>
|
||||
|
||||
<div class="st_content">
|
||||
|
||||
<div id="user-register-form" class="roundies box_form">
|
||||
<h3>{__ text="Dane konta"}</h3>
|
||||
|
||||
<div style="padding:25px;">
|
||||
{slot name="user_create_account_before_fieldset" hidden="true"}{/slot}
|
||||
{$form_start}
|
||||
<fieldset>
|
||||
|
||||
<div class="st_row">
|
||||
<div class="error_tooltip">
|
||||
{if $error_email!=""}
|
||||
<img src="{image_path image='exclamation.png'}" title="{$error_email}" alt="{$error_email}">
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<div class="st_field">
|
||||
{$label_email}
|
||||
{$input_email}
|
||||
</div>
|
||||
</div>
|
||||
<div class="st_row">
|
||||
|
||||
<div class="error_tooltip">
|
||||
{if $error_password1!=""}
|
||||
<img src="{image_path image='exclamation.png'}" title="{$error_password1}" alt="{$error_password1}">
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<div class="st_field">
|
||||
{$label_password1}
|
||||
{$input_password1}
|
||||
|
||||
<script type="text/javascript">
|
||||
jQuery('#st_form-user-password1').pstrength();
|
||||
</script>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="st_row">
|
||||
<div class="error_tooltip">
|
||||
{if $error_password2!=""}
|
||||
<img src="{image_path image='exclamation.png'}" title="{$error_password2}" alt="{$error_password2}">
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<div class="st_field">
|
||||
{$label_password2}
|
||||
{$input_password2}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="st_row">
|
||||
<div class="st_field vertical-align-middle {if $error_privacy==1} red {/if}">
|
||||
{$checkbox_privacy}
|
||||
{$link_to_privacy}
|
||||
</div>
|
||||
</div>
|
||||
<div id="captcha_form" style="display:none">
|
||||
{if isset($captcha_on)}
|
||||
<div class="st_row">
|
||||
<div style="margin-bottom: 2px;">
|
||||
{$get_captcha}
|
||||
</div>
|
||||
<div class="error_tooltip">
|
||||
{if $error_captcha!=""}
|
||||
<img src="{image_path image='exclamation.png'}" title="{$error_captcha}" alt="{$error_captcha}">
|
||||
{/if}
|
||||
</div>
|
||||
<div class="st_field">
|
||||
{$label_captcha}
|
||||
{$input_captcha}
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<div class="st_row">
|
||||
<div class="st_field gray_text vertical-align-middle">
|
||||
<span> * {__ text="Pola wymagane"}</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="st_row">
|
||||
|
||||
<div id="st_button-user-account" class="buttons right">
|
||||
<button type="submit" class="regular roundies" >
|
||||
{__ text="Zarejestruj"}
|
||||
</button>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{literal}
|
||||
<script type="text/javascript">
|
||||
jQuery(function ($)
|
||||
{
|
||||
$(document).ready(function()
|
||||
{
|
||||
$(".error_tooltip img[title]").tooltip({
|
||||
effect: 'slide',
|
||||
opacity: 1,
|
||||
position: 'bottom right',
|
||||
offset: [15,4],
|
||||
tipClass: 'alert_tooltip'
|
||||
});
|
||||
|
||||
$("label").inFieldLabels();
|
||||
|
||||
$('#st_form-user-privacy').click(function(){
|
||||
$("#captcha_form").toggle();
|
||||
});
|
||||
|
||||
if($('#st_form-user-privacy').attr('checked'))
|
||||
{
|
||||
$("#captcha_form").show();
|
||||
}else{
|
||||
$("#captcha_form").hide();
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
});
|
||||
</script>
|
||||
{/literal}
|
||||
@@ -0,0 +1,130 @@
|
||||
{set layout="one_column_layout"}
|
||||
|
||||
<div id="st_application-user-account" class="box roundies">
|
||||
|
||||
<div class="title">
|
||||
<h2>{__ text="Zmiana hasła"}</h2>
|
||||
<p>{__ text="Podaj nowe hasło."}</p>
|
||||
</div>
|
||||
|
||||
<div class="st_content">
|
||||
|
||||
<div id="user-new-password-form" class="roundies frame box_form">
|
||||
<h3>{__ text="Dane konta"}</h3>
|
||||
|
||||
<div style="padding:25px;">
|
||||
{$form_start}
|
||||
<fieldset>
|
||||
|
||||
<div class="st_row">
|
||||
<div class="error_tooltip">
|
||||
{if $error_email!=""}
|
||||
<img src="{image_path image='exclamation.png'}" title="{$error_email}" alt="{$error_email}">
|
||||
{/if}
|
||||
</div>
|
||||
<div class="st_field">
|
||||
{$label_email}
|
||||
{$input_email}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="st_row">
|
||||
<div class="error_tooltip">
|
||||
{if $error_password1!=""}
|
||||
<img src="{image_path image='exclamation.png'}" title="{$error_password1}" alt="{$error_password1}">
|
||||
{/if}
|
||||
</div>
|
||||
<div class="st_field">
|
||||
{$label_password1}
|
||||
{$input_password1}
|
||||
<script type="text/javascript">
|
||||
jQuery('#st_form-user-password1').pstrength();
|
||||
</script>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="st_row">
|
||||
<div class="error_tooltip">
|
||||
{if $error_password2!=""}
|
||||
<img src="{image_path image='exclamation.png'}" title="{$error_password2}" alt="{$error_password2}">
|
||||
{/if}
|
||||
</div>
|
||||
<div class="st_field">
|
||||
{$label_password2}
|
||||
{$input_password2}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{if isset($captcha_on)}
|
||||
<div class="st_row">
|
||||
{$error_captcha}
|
||||
<div style="margin-bottom: 2px;">
|
||||
{$get_captcha}
|
||||
</div>
|
||||
<div class="error_tooltip">
|
||||
{if $error_captcha!=""}
|
||||
<img src="{image_path image='exclamation.png'}" title="{$error_captcha}" alt="{$error_captcha}">
|
||||
{/if}
|
||||
</div>
|
||||
<div class="st_field">
|
||||
{$label_captcha}
|
||||
{$input_captcha}
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
|
||||
<div class="st_row">
|
||||
<div id="st_button-user-account" class="buttons right">
|
||||
<button type="submit" class="regular roundies" >
|
||||
{__ text="Zmień hasło"}
|
||||
</button>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
{$hidden_hash_code}
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
{literal}
|
||||
<script type="text/javascript">
|
||||
jQuery(function ($)
|
||||
{
|
||||
$(document).ready(function()
|
||||
{
|
||||
$(".error_tooltip img[title]").tooltip({
|
||||
effect: 'slide',
|
||||
opacity: 1,
|
||||
position: 'bottom right',
|
||||
offset: [15,4],
|
||||
tipClass: 'alert_tooltip'
|
||||
});
|
||||
|
||||
$("label").inFieldLabels();
|
||||
|
||||
$('#st_form-user-privacy').click(function(){
|
||||
$("#captcha_form").toggle();
|
||||
});
|
||||
|
||||
if($('#st_form-user-privacy').attr('checked'))
|
||||
{
|
||||
$("#captcha_form").show()
|
||||
}else{
|
||||
$("#captcha_form").hide();
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
});
|
||||
</script>
|
||||
{/literal}
|
||||
@@ -0,0 +1,139 @@
|
||||
{set layout="one_column_layout"}
|
||||
<div id="st_application-user-account" class="box roundies">
|
||||
|
||||
<div class="title">
|
||||
<h2>{__ text="Rejestracja"}</h2>
|
||||
<p>
|
||||
{__ text="Nie masz jeszcze założonego konta. Wystarczy, że podasz hasło dla loginu"}: <b>{$login}</b><br>
|
||||
{__ text="Uzyskasz w ten sposób pełne konto z dostępem do swoich danych i informacji o statusach zamówienia."}
|
||||
</p>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
|
||||
<div class="st_content">
|
||||
|
||||
<div id="user-register-form" class="roundies frame box_form">
|
||||
<h3>{__ text="Dane konta"}</h3>
|
||||
|
||||
<div style="padding:25px;">
|
||||
|
||||
{$form_start}
|
||||
<fieldset>
|
||||
|
||||
<div class="st_row">
|
||||
<div class="error_tooltip">
|
||||
{if $error_email!=""}
|
||||
<img src="{image_path image='exclamation.png'}" title="{$error_email}" alt="{$error_email}">
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<div class="st_field">
|
||||
{$label_email}
|
||||
{$input_email}
|
||||
</div>
|
||||
</div>
|
||||
<div class="st_row">
|
||||
<div class="error_tooltip">
|
||||
{if $error_password1!=""}
|
||||
<img src="{image_path image='exclamation.png'}" title="{$error_password1}" alt="{$error_password1}">
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<div class="st_field">
|
||||
{$label_password1}
|
||||
{$input_password1}
|
||||
|
||||
<script type="text/javascript">
|
||||
jQuery('#st_form-user-password1').pstrength();
|
||||
</script>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="st_row">
|
||||
<div class="error_tooltip">
|
||||
{if $error_password2!=""}
|
||||
<img src="{image_path image='exclamation.png'}" title="{$error_password2}" alt="{$error_password2}">
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<div class="st_field">
|
||||
{$label_password2}
|
||||
{$input_password2}
|
||||
</div>
|
||||
</div>
|
||||
<div class="st_row">
|
||||
<div class="st_field vertical-align-middle {if $error_privacy==1} red {/if}">
|
||||
{$checkbox_privacy}
|
||||
{$link_to_privacy}
|
||||
</div>
|
||||
</div>
|
||||
<div id="captcha_form" style="display:none">
|
||||
{if isset($captcha_on)}
|
||||
<div class="st_row">
|
||||
|
||||
<div style="margin-bottom: 2px;">
|
||||
{$get_captcha}
|
||||
</div>
|
||||
<div class="error_tooltip">
|
||||
{if $error_captcha!=""}
|
||||
<img src="{image_path image='exclamation.png'}" title="{$error_captcha}" alt="{$error_captcha}">
|
||||
{/if}
|
||||
</div>
|
||||
<div class="st_field">
|
||||
{$label_captcha}
|
||||
{$input_captcha}
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
<div class="st_row">
|
||||
|
||||
<div id="st_button-user-account" class="buttons right">
|
||||
<button type="submit" class="regular roundies" >
|
||||
{__ text="Zarejestruj"}
|
||||
</button>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{literal}
|
||||
<script type="text/javascript">
|
||||
jQuery(function ($)
|
||||
{
|
||||
$(document).ready(function()
|
||||
{
|
||||
$(".error_tooltip img[title]").tooltip({
|
||||
effect: 'slide',
|
||||
opacity: 1,
|
||||
position: 'bottom right',
|
||||
offset: [15,4],
|
||||
tipClass: 'alert_tooltip'
|
||||
});
|
||||
|
||||
$("label").inFieldLabels();
|
||||
|
||||
$('#st_form-user-privacy').click(function(){
|
||||
$("#captcha_form").toggle();
|
||||
});
|
||||
|
||||
if($('#st_form-user-privacy').attr('checked'))
|
||||
{
|
||||
$("#captcha_form").show()
|
||||
}else{
|
||||
$("#captcha_form").hide();
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
});
|
||||
</script>
|
||||
{/literal}
|
||||
@@ -0,0 +1,26 @@
|
||||
{set layout="one_column_layout"}
|
||||
|
||||
<div id="st_application-user-login" class="box roundies">
|
||||
|
||||
<div class="title">
|
||||
<h2>{__ text="Usuń konto"}</h2>
|
||||
</div>
|
||||
|
||||
<div class="st_content">
|
||||
|
||||
<div id="logout_form" class="box_form roundies" style="width: 407px;">
|
||||
<p style="text-align:center;">{__ text="Pomyślnie usunięto użytkownika"}:</p>
|
||||
<p style="text-align:center; font-size:14px;"><b>{$email}</b></p>
|
||||
<p style="text-align:center;">{__ text="Za chwilę nastąpi przekierowanie na stronę główną."}</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{literal}
|
||||
<script type="text/javascript">
|
||||
setTimeout(function() {
|
||||
window.location = "/";
|
||||
}, 5000);
|
||||
</script>
|
||||
{/literal}
|
||||
@@ -0,0 +1,241 @@
|
||||
{set layout="one_column_layout"}
|
||||
<div id="st_user-edit_account" class="box roundies">
|
||||
<div id="st_navigation_bar-user" class="st_navigation_bar_user">
|
||||
<ul>
|
||||
<li class="st_first"><a href="/user_data/userPanel">{__ text="Moje konto"}</a></li>
|
||||
<li class="st_selected"><a href="/user/editAccount">{__ text="Moje dane"}</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div id="st_user-editaccount" >
|
||||
|
||||
<div class="left" style="width: 50%; margin-top: 15px;">
|
||||
|
||||
{if $billing_edit_url}
|
||||
<div id="edit-billing" class="roundies box_form left">
|
||||
<h3>{__ text="Dane płatnika"}</h3>
|
||||
<div class="right" id="change_billing_edit"><a href="{$billing_edit_url}">{__ text="Zmień"}</a></div>
|
||||
|
||||
|
||||
<div style="padding:15px;" class="user_profile_content">
|
||||
{if $billing_company!=""}
|
||||
<span class="invoice_text">{__ text="Dane do faktury"}</span>
|
||||
<br/>
|
||||
{$billing_company}<br/>
|
||||
{$billing_vat_number}<br/>
|
||||
{/if}
|
||||
|
||||
<div class="full_name_space">
|
||||
<b>{$billing_full_name}</b>
|
||||
</div>
|
||||
|
||||
{$billing_address}<br/>
|
||||
|
||||
{if $billing_address_more!=""}
|
||||
{$billing_address_more}<br/>
|
||||
{/if}
|
||||
|
||||
{if $billing_region!=""}
|
||||
{$billing_region}<br/>
|
||||
{/if}
|
||||
|
||||
{$billing_code}
|
||||
{$billing_town}<br/>
|
||||
|
||||
{$billing_country}<br/>
|
||||
{$billing_phone}<br/>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
{if $delivery_edit_url}
|
||||
<div id="edit-delivery" class="roundies box_form left">
|
||||
<h3>{__ text="Dane wysyłkowe"}</h3>
|
||||
<div class="right" id="change_delivery_edit"><a href="{$delivery_edit_url}">{__ text="Zmień"}</a></div>
|
||||
<div style="padding:15px;" class="user_profile_content">
|
||||
{if $delivery_company!=""}
|
||||
{$delivery_company}<br/>
|
||||
{/if}
|
||||
|
||||
<div class="full_name_space">
|
||||
<b>{$delivery_full_name}</b>
|
||||
</div>
|
||||
|
||||
{$delivery_address}<br/>
|
||||
|
||||
{if $delivery_address_more!=""}
|
||||
{$delivery_address_more}<br/>
|
||||
{/if}
|
||||
|
||||
{if $delivery_region!=""}
|
||||
{$delivery_region}<br/>
|
||||
{/if}
|
||||
|
||||
{$delivery_code}
|
||||
{$delivery_town}<br/>
|
||||
|
||||
{$delivery_country}<br/>
|
||||
{$delivery_phone}<br/>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
|
||||
<div class="right" style="width: 50%; margin-top: 15px;">
|
||||
<div id="edit-login" class="roundies box_form right">
|
||||
<h3>{__ text="Zmień e-mail (login)"}</h3>
|
||||
|
||||
{$form_start}
|
||||
<div class="box_form_content">
|
||||
<fieldset>
|
||||
|
||||
<div class="st_row">
|
||||
|
||||
<div class="error_tooltip">
|
||||
{if $error_email!=""}
|
||||
<img src="{image_path image='exclamation.png'}" title="{$error_email}" alt="{$error_email}">
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<div class="st_field">
|
||||
{$label_email}
|
||||
{$input_email}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="st_row">
|
||||
<div class="buttons right">
|
||||
<button type="submit" class="regular roundies" style="margin-right:2px">
|
||||
{__ text="Aktualizuj"}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</fieldset>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div id="edit-password" class="roundies box_form right">
|
||||
<h3>{__ text="Zmień hasło"}</h3>
|
||||
|
||||
{$form_start_2}
|
||||
<div class="box_form_content">
|
||||
<fieldset>
|
||||
|
||||
<div class="st_row">
|
||||
<div class="error_tooltip">
|
||||
{if $error_user_oldpassword!=""}
|
||||
<img src="{image_path image='exclamation.png'}" title="{$error_user_oldpassword}" alt="{$error_user_oldpassword}">
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<div class="st_field">
|
||||
{$label_user_oldpassword}
|
||||
{$input_user_oldpassword}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="st_row">
|
||||
<div class="error_tooltip">
|
||||
{if $error_user_password1!=""}
|
||||
<img src="{image_path image='exclamation.png'}" title="{$error_user_password1}" alt="{$error_user_password1}">
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<div class="st_field">
|
||||
{$label_user_password1}
|
||||
{$input_user_password1}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="st_row">
|
||||
<div class="error_tooltip">
|
||||
{if $error_user_password2!=""}
|
||||
<img src="{image_path image='exclamation.png'}" title="{$error_user_password2}" alt="{$error_user_password2}">
|
||||
{/if}
|
||||
</div>
|
||||
<div class="st_field">
|
||||
{$label_user_password2}
|
||||
{$input_user_password2}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="st_row">
|
||||
<div class="buttons right" style="margin-right:2px">
|
||||
<button type="submit" class="regular roundies" >
|
||||
{__ text="Aktualizuj"}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</fieldset>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div id="edit-login" class="roundies box_form right">
|
||||
<h3>{__ text="Usuń konto"}</h3>
|
||||
|
||||
{$form_start}
|
||||
<div class="box_form_content">
|
||||
<fieldset>
|
||||
|
||||
<div class="st_row">
|
||||
|
||||
{__ text="Po usunięciu konta wszystkie dane zostaną bezpowrotnie skasowane."}
|
||||
</div>
|
||||
|
||||
<div class="st_row">
|
||||
|
||||
<div class="buttons right">
|
||||
<a href="/user/requestDeleteAccount" class="regular roundies" style="margin-right:2px"> {__ text="Usuń konto"}</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</fieldset>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="clear"></div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{literal}
|
||||
<script type="text/javascript">
|
||||
jQuery(function ($)
|
||||
{
|
||||
$(document).ready(function()
|
||||
{
|
||||
$(".error_tooltip img[title]").tooltip({
|
||||
effect: 'slide',
|
||||
opacity: 1,
|
||||
position: 'bottom right',
|
||||
offset: [15,4],
|
||||
tipClass: 'alert_tooltip'
|
||||
});
|
||||
|
||||
$("label").inFieldLabels();
|
||||
jQuery('#password1').pstrength();
|
||||
});
|
||||
});
|
||||
</script>
|
||||
{/literal}
|
||||
@@ -0,0 +1,40 @@
|
||||
{set layout="one_column_layout"}
|
||||
<div id="st_application-user-account" class="st_application">
|
||||
|
||||
<div class="title">
|
||||
<h2>{__ text="Rejestracja danych."}</h2>
|
||||
<p>{__ text="Potwierdzenie autentyczności adresu."}</p>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="st_content">
|
||||
|
||||
{if $confirm == '0'}
|
||||
|
||||
<p>
|
||||
{__ text="Wystąpił problem z rejestracją użytkownika."}
|
||||
</p>
|
||||
|
||||
{/if}
|
||||
|
||||
{if $confirm == '1'}
|
||||
|
||||
<p>
|
||||
{__ text="Dziękujemy za dokonanie rejestracji. Twoje konto zostało zaktywowane i jest w pełni funkcjonalne. Zaloguj się aby uzyskać dostęp do konta użytkownika."}
|
||||
</p>
|
||||
|
||||
{/if}
|
||||
|
||||
{if $confirm == '2'}
|
||||
|
||||
<p>
|
||||
{__ text="Twoje konto zostało już wcześniej potwierdzone."}
|
||||
</p>
|
||||
|
||||
{/if}
|
||||
|
||||
|
||||
</div>
|
||||
<div id="st_application-user-login-foot">
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,48 @@
|
||||
<div id="user_status">
|
||||
|
||||
{if $is_authenticated && $account_type=="full"}
|
||||
<div id="user_status_info"><a href="{url_for internal='stUserData/userPanel' secure=true}">{$username}</a>{if $points_system_is_active==1 && $points_show==1}{$points}{/if}</div>
|
||||
<div class="tooltip_account tooltip roundies" style="padding:10px 30px;">
|
||||
<a href="{url_for internal='stUserData/userPanel' secure=true}">{__ text="Moje konto"}</a>
|
||||
<a href="{url_for internal='stOrder/list' secure=true}">{__ text="Zamówienia"}</a>
|
||||
<span>{$logout}</span>
|
||||
</div>
|
||||
{elseif $is_authenticated && $account_type=="annonymous"}
|
||||
<div id="user_status_info"><a href="{url_for internal='stUser/createPassword' secure=true}">{$username}</a></div>
|
||||
<div class="tooltip_account tooltip roundies" style="padding:10px 30px;">
|
||||
<span>{$remove}</span>
|
||||
</div>
|
||||
{elseif $is_authenticated && $account_type=="external"}
|
||||
<div id="user_status_info">{$external}<a href="{url_for internal='stUserData/userPanel' secure=true}">{$username}</a>{if $points_system_is_active==1 && $points_show==1}{$points}{/if}</div>
|
||||
<div class="tooltip_account tooltip roundies" style="padding:10px 30px;">
|
||||
<a href="{url_for internal='stUserData/userPanel' secure=true}">{__ text="Moje konto"}</a>
|
||||
<a href="{url_for internal='stOrder/list' secure=true}">{__ text="Zamówienia"}</a>
|
||||
<span>{$logout}</span>
|
||||
</div>
|
||||
{else}
|
||||
<div id="user_status_info">{$my_account}</div>
|
||||
<div class="tooltip_account tooltip roundies" style="padding:10px 30px;">
|
||||
<a href="{url_for internal='stUser/loginUser' secure=true}">{__ text="Zaloguj"}</a>
|
||||
<a href="{url_for internal='stUser/createAccount' secure=true}">{__ text="Zarejestruj"}</a>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
{literal}
|
||||
<script type="text/javascript" language="javascript">
|
||||
jQuery(function ($) {
|
||||
$(document).ready(function () {
|
||||
$("#user_status_info").tooltip({
|
||||
effect: 'slide',
|
||||
opacity: 1,
|
||||
position: 'bottom center',
|
||||
offset: [10,0]
|
||||
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
</script>
|
||||
{/literal}
|
||||
@@ -0,0 +1,137 @@
|
||||
{set layout="one_column_layout"}
|
||||
|
||||
<div id="st_application-user-login" class="box roundies">
|
||||
<div class="title">
|
||||
<h2>{__ text="Moje konto"}</h2>
|
||||
<p>
|
||||
{__ text="Zarejestruj nowe konto lub zaloguj na istniejące."}
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="st_content">
|
||||
|
||||
<div id="st_application-user-login-register" class="roundies frame box_form">
|
||||
<h3>{__ text="Rejestracja"}</h3>
|
||||
|
||||
<div style="padding:25px;">
|
||||
|
||||
<div style="margin:0px auto; width: 315px; text-align: center">
|
||||
{$new_user_icon}
|
||||
<div class="buttons" style="display: table; margin: 10px auto;">
|
||||
<a href="{$register_url}" class="regular roundies"> <span class="arrow_right">{__ text="Zarejestruj się"}</span> </a>
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div id="st_application-user-login-login" class="roundies frame box_form">
|
||||
<h3>{__ text="Logowanie"}</h3>
|
||||
|
||||
<div class="content">
|
||||
|
||||
{$form_start}
|
||||
|
||||
<fieldset>
|
||||
<div class="st_row">
|
||||
<div class="error_tooltip">
|
||||
{if $error_email!=""}
|
||||
<img src="{image_path image='exclamation.png'}" title="{$error_email}" alt="{$error_email}">
|
||||
{/if}
|
||||
</div>
|
||||
<div class="st_field">
|
||||
{$label_email}
|
||||
{$input_email}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="st_row">
|
||||
<div class="error_tooltip">
|
||||
{if $error_password!=""}
|
||||
<img src="{image_path image='exclamation.png'}" title="{$error_password}" alt="{$error_password}">
|
||||
{/if}
|
||||
</div>
|
||||
<div class="st_field left">
|
||||
{$label_password}
|
||||
{$input_password}
|
||||
|
||||
</div>
|
||||
|
||||
<div class="st_field left">
|
||||
<div id="st_button-user-login_success" class="buttons right">
|
||||
<button type="submit" class="regular roundies" >
|
||||
{__ text="Zaloguj"}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
|
||||
{if $login_show_error}
|
||||
<div class="st_row">
|
||||
<div id="st_application-user-login-remind">
|
||||
{$remind_password_link}
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
</fieldset>
|
||||
|
||||
</form>
|
||||
|
||||
<div id="external_google">
|
||||
|
||||
{slot name="login_google_user" hidden="true"}{/slot}
|
||||
|
||||
{if $login_google_on == 1}
|
||||
<div id="st_button-user-login-google" class="buttons right">
|
||||
<a href="{$google_url}" class="regular roundies"> <img src="{image_path image='google.png'}" alt=""/> </a>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{literal}
|
||||
<script type="text/javascript">
|
||||
jQuery(function($) {
|
||||
$(document).ready(function() {
|
||||
|
||||
$(".error_tooltip img[title]").tooltip({
|
||||
effect: 'slide',
|
||||
opacity: 1,
|
||||
position: 'bottom right',
|
||||
offset: [15,4],
|
||||
tipClass: 'alert_tooltip'
|
||||
});
|
||||
|
||||
$("label").inFieldLabels();
|
||||
|
||||
function equalHeight(group) {
|
||||
tallest = 0;
|
||||
group.each(function() {
|
||||
$(this).css("height", "auto");
|
||||
thisHeight = $(this).height();
|
||||
if (thisHeight > tallest) {
|
||||
tallest = thisHeight;
|
||||
}
|
||||
});
|
||||
group.height(tallest);
|
||||
}
|
||||
|
||||
equalHeight($(".frame"));
|
||||
|
||||
});
|
||||
|
||||
});
|
||||
</script>
|
||||
{/literal}
|
||||
@@ -0,0 +1,27 @@
|
||||
{set layout="one_column_layout"}
|
||||
|
||||
<div id="st_application-user-login" class="box roundies">
|
||||
|
||||
<div class="title">
|
||||
<h2>{__ text="Wylogowano"}</h2>
|
||||
</div>
|
||||
|
||||
<div class="st_content">
|
||||
|
||||
<div id="logout_form" class="box_form roundies" style="width: 407px;">
|
||||
<p style="text-align:center;">{__ text="Pomyślnie wylogowano użytkownika"}:</p>
|
||||
<p style="text-align:center; font-size:14px;"><b>{$username}</b></p>
|
||||
<p style="text-align:center;">{__ text="Za chwilę nastąpi przekierowanie na stronę główną."}</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
{if $redirect}
|
||||
{literal}
|
||||
<script type="text/javascript">
|
||||
setTimeout(function() {
|
||||
window.location = "/";
|
||||
}, 5000);
|
||||
</script>
|
||||
{/literal}
|
||||
{/if}
|
||||
@@ -0,0 +1,44 @@
|
||||
{set layout="one_column_layout"}
|
||||
<div id="st_application-user-account" class="box roundies">
|
||||
|
||||
<div class="title">
|
||||
<h2>{__ text="Rejestracja"}</h2>
|
||||
<p>{__ text="Uzupełnij dane konta."}</p>
|
||||
</div>
|
||||
|
||||
<div class="st_content">
|
||||
|
||||
<p>
|
||||
{__ text="W związku ze zmianą oprogramowania naszego sklepu, prosimy o podanie adresu email, który od tej pory będzie stanowił login do konta."}
|
||||
</p>
|
||||
{$form_start}
|
||||
<fieldset>
|
||||
<div class="st_row">
|
||||
{$error_email}
|
||||
{$label_email}
|
||||
<div class="st_field">
|
||||
{$input_email}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="st_row">
|
||||
<div id="st_button-user-account" class="st_button-container" style="margin-right:40px;">
|
||||
<div class="st_button st_align-right">
|
||||
<div class="st_button-left">
|
||||
{$register_submit}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{$hidden_user_id}
|
||||
{$hidden_old_login}
|
||||
{$hidden_password}
|
||||
|
||||
</fieldset>
|
||||
|
||||
</form>
|
||||
</div>
|
||||
<div id="st_application-user-login-foot">
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,28 @@
|
||||
<div id="privacy_overlay">
|
||||
<div class="privacy_overlay_content"></div>
|
||||
</div>
|
||||
<div id="terms_overlay">
|
||||
<div class="terms_overlay_content"></div>
|
||||
</div>
|
||||
<div id="user_data_billing_privacy_content" style="width: 250px;">
|
||||
|
||||
{if $culture == "de"}
|
||||
{__ text="Ich habe"}
|
||||
<a href="#active_terms_overlay" id="active_terms_overlay">{__ text="die AGB's"}</a>
|
||||
{__ text="und"}
|
||||
<a href="#active_overlay" id="active_overlay">{__ text="die Datenschutzrichtlinien"}</a>
|
||||
{__ text="gelesen und stimme ihnen zu."}
|
||||
{else}
|
||||
|
||||
{if $privacy_only == "true"}
|
||||
{__ text="Wyrażam zgodę na przetwarzanie moich danych osobowych zgodnie z"} {if $new_window== "true"}<a href="{$privacy_url}" target="_blank">{__ text="polityką prywatności"}</a>{else}<a href="#active_overlay" id="active_overlay">{__ text="polityką prywatności"}</a>{/if}.
|
||||
{else}
|
||||
{__ text="Akceptuję"}
|
||||
<a href="#active_terms_overlay" id="active_terms_overlay">{__ text="regulamin"}</a>
|
||||
{__ text="i przeczytałem"}
|
||||
<a href="#active_overlay" id="active_overlay_1">{__ text="politykę prywatności"}</a>.
|
||||
{__ text="Wyrażam zgodę na przetwarzanie moich danych osobowych zgodnie z"} <a href="#active_overlay" id="active_overlay_2">{__ text="polityką prywatności"}</a>.
|
||||
{/if}
|
||||
|
||||
{/if}
|
||||
</div>
|
||||
@@ -0,0 +1,93 @@
|
||||
{set layout="one_column_layout"}
|
||||
<div id="st_application-user-remind" class="box roundies">
|
||||
|
||||
<div class="title">
|
||||
<h2>{__ text="Przypomnij hasło"}</h2>
|
||||
<p>{__ text="Podaj adres email (login użytkownika)"}</p>
|
||||
</div>
|
||||
|
||||
<div class="content">
|
||||
|
||||
{if isset($not_send_true)}
|
||||
|
||||
{$form_start}
|
||||
<div id="remind_form" class="box_form roundies">
|
||||
<h3>{__ text="Dane konta"}</h3>
|
||||
<div style="padding:25px;">
|
||||
<fieldset>
|
||||
<div class="st_row">
|
||||
|
||||
<div class="error_tooltip">
|
||||
{if $error_email!=""}
|
||||
<img src="{image_path image='exclamation.png'}" title="{$error_email}" alt="{$error_email}">
|
||||
{/if}
|
||||
</div>
|
||||
<div class="st_field">
|
||||
{$label_email}
|
||||
{$input_email}
|
||||
</div>
|
||||
</div>
|
||||
{if isset($captcha_on)}
|
||||
<div class="st_row">
|
||||
|
||||
|
||||
<div style="margin-bottom: 2px;">
|
||||
{$get_captcha}
|
||||
</div>
|
||||
<div class="error_tooltip">
|
||||
{if $error_captcha!=""}
|
||||
<img src="{image_path image='exclamation.png'}" title="{$error_captcha}" alt="{$error_captcha}">
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<div class="st_field">
|
||||
{$label_captcha}
|
||||
{$input_captcha}
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
<div id="st_button-user-remind" class="buttons right">
|
||||
<button type="submit" class="regular roundies" >
|
||||
{__ text="Przypomnij"}
|
||||
</button>
|
||||
</div>
|
||||
|
||||
</fieldset>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
|
||||
{else}
|
||||
<div id="remind_form" class="box_form roundies">
|
||||
<div style="padding:25px;">
|
||||
{__ text="Sprawdź pocztę na poniższy adres został wysłany link do zmiany hasła."}
|
||||
|
||||
<p style="text-align: center; font-size: 16px; font-weight: bold;">{$email_send_to}</p>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
{literal}
|
||||
<script type="text/javascript">
|
||||
jQuery(function ($)
|
||||
{
|
||||
$(document).ready(function()
|
||||
{
|
||||
$("label").inFieldLabels();
|
||||
|
||||
$(".error_tooltip img[title]").tooltip({
|
||||
effect: 'slide',
|
||||
opacity: 1,
|
||||
position: 'bottom right',
|
||||
offset: [15,4],
|
||||
tipClass: 'alert_tooltip'
|
||||
});
|
||||
});
|
||||
});
|
||||
</script>
|
||||
{/literal}
|
||||
@@ -0,0 +1,31 @@
|
||||
{set layout="one_column_layout"}
|
||||
<div id="st_application-user-account" class="box roundies">
|
||||
<div class="title">
|
||||
<h2>{__ text="Usuń konto"}</h2>
|
||||
<p>
|
||||
{__ text="Prośba o potwierdzenie usunięcia konta."}
|
||||
</p>
|
||||
</div>
|
||||
<div class="st_content">
|
||||
|
||||
<div id="user_wait_confirm" class="box_form roundies">
|
||||
|
||||
<div style="padding:25px;">
|
||||
<p>
|
||||
{__ text="Proszę sprawdzić pocztę, na adres"}
|
||||
</p>
|
||||
<p>
|
||||
<b>{$email}</b>
|
||||
</p>
|
||||
<p>
|
||||
{__ text="została wysłana prośba o potwierdzenie operacji usunięcia konta."}
|
||||
</p>
|
||||
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
@@ -0,0 +1,302 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<head style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
|
||||
<meta name="viewport" content="width=device-width" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<title style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">ZURBemails</title>
|
||||
|
||||
<style style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
{literal}
|
||||
/* -------------------------------------
|
||||
GLOBAL
|
||||
------------------------------------- */
|
||||
* {
|
||||
margin:0;
|
||||
padding:0;
|
||||
}
|
||||
* { font-family: Arial, sans-serif; font-size:12px;}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
.collapse {
|
||||
margin:0;
|
||||
padding:0;
|
||||
}
|
||||
body {
|
||||
-webkit-font-smoothing:antialiased;
|
||||
-webkit-text-size-adjust:none;
|
||||
width: 100%!important;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
|
||||
/* -------------------------------------
|
||||
ELEMENTS
|
||||
------------------------------------- */
|
||||
a { color: #{/literal}{$link_color}{literal};}
|
||||
|
||||
.btn {
|
||||
text-decoration:none;
|
||||
color: #FFF;
|
||||
background-color: #666;
|
||||
padding:10px 16px;
|
||||
font-weight:bold;
|
||||
margin-right:10px;
|
||||
text-align:center;
|
||||
cursor:pointer;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
p.callout {
|
||||
padding:15px;
|
||||
background-color:#ECF8FF;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.callout a {
|
||||
font-weight:bold;
|
||||
color: #2BA6CB;
|
||||
}
|
||||
|
||||
table.social {
|
||||
/* padding:15px; */
|
||||
background-color: #ebebeb;
|
||||
|
||||
}
|
||||
.social .soc-btn {
|
||||
padding: 3px 7px;
|
||||
font-size:12px;
|
||||
margin-bottom:10px;
|
||||
text-decoration:none;
|
||||
color: #FFF;font-weight:bold;
|
||||
display:block;
|
||||
text-align:center;
|
||||
}
|
||||
a.fb { background-color: #3B5998!important; }
|
||||
a.tw { background-color: #1daced!important; }
|
||||
a.gp { background-color: #DB4A39!important; }
|
||||
a.ms { background-color: #000!important; }
|
||||
|
||||
.sidebar .soc-btn {
|
||||
display:block;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
/* -------------------------------------
|
||||
HEADER
|
||||
------------------------------------- */
|
||||
table.head-wrap { width: 100%;}
|
||||
|
||||
.header.container table td.logo { padding: 15px; }
|
||||
.header.container table td.label { padding: 15px; padding-left:0px;}
|
||||
|
||||
|
||||
/* -------------------------------------
|
||||
BODY
|
||||
------------------------------------- */
|
||||
table.body-wrap { width: 100%;}
|
||||
|
||||
|
||||
/* -------------------------------------
|
||||
FOOTER
|
||||
------------------------------------- */
|
||||
table.footer-wrap { width: 100%; clear:both!important;
|
||||
}
|
||||
.footer-wrap .container td.content p { border-top: 1px solid rgb(215,215,215); padding-top:15px;}
|
||||
.footer-wrap .container td.content p {
|
||||
font-size:10px;
|
||||
font-weight: bold;
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* -------------------------------------
|
||||
TYPOGRAPHY
|
||||
------------------------------------- */
|
||||
h1,h2,h3,h4,h5,h6 {
|
||||
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; line-height: 1.1; margin-bottom:15px; color:#000;
|
||||
}
|
||||
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small { font-size: 60%; color: #6f6f6f; line-height: 0; text-transform: none; }
|
||||
|
||||
h1 { font-weight:200; font-size: 44px;}
|
||||
h2 { font-weight:200; font-size: 37px;}
|
||||
h3 { font-weight:500; font-size: 27px;}
|
||||
h4 { font-weight:500; font-size: 23px;}
|
||||
h5 { font-weight:900; font-size: 17px;}
|
||||
h6 { font-weight:900; font-size: 14px; text-transform: uppercase; color:#444;}
|
||||
|
||||
.collapse { margin:0!important;}
|
||||
|
||||
p, ul {
|
||||
margin-bottom: 10px;
|
||||
font-weight: normal;
|
||||
font-size:12px;
|
||||
line-height:1.6;
|
||||
}
|
||||
p.lead { font-size:17px; }
|
||||
p.last { margin-bottom:0px;}
|
||||
|
||||
ul li {
|
||||
margin-left:5px;
|
||||
list-style-position: inside;
|
||||
}
|
||||
|
||||
/* -------------------------------------
|
||||
SIDEBAR
|
||||
------------------------------------- */
|
||||
ul.sidebar {
|
||||
background:#ebebeb;
|
||||
display:block;
|
||||
list-style-type: none;
|
||||
}
|
||||
ul.sidebar li { display: block; margin:0;}
|
||||
ul.sidebar li a {
|
||||
text-decoration:none;
|
||||
color: #666;
|
||||
padding:10px 16px;
|
||||
/* font-weight:bold; */
|
||||
margin-right:10px;
|
||||
/* text-align:center; */
|
||||
cursor:pointer;
|
||||
border-bottom: 1px solid #777777;
|
||||
border-top: 1px solid #FFFFFF;
|
||||
display:block;
|
||||
margin:0;
|
||||
}
|
||||
ul.sidebar li a.last { border-bottom-width:0px;}
|
||||
ul.sidebar li a h1,ul.sidebar li a h2,ul.sidebar li a h3,ul.sidebar li a h4,ul.sidebar li a h5,ul.sidebar li a h6,ul.sidebar li a p { margin-bottom:0!important;}
|
||||
|
||||
|
||||
|
||||
/* ---------------------------------------------------
|
||||
RESPONSIVENESS
|
||||
Nuke it from orbit. It's the only way to be sure.
|
||||
------------------------------------------------------ */
|
||||
|
||||
/* Set a max-width, and make it display as block so it will automatically stretch to that width, but will also shrink down on a phone or something */
|
||||
.container {
|
||||
display:block!important;
|
||||
max-width:600px!important;
|
||||
margin:0 auto!important; /* makes it centered */
|
||||
clear:both!important;
|
||||
}
|
||||
|
||||
/* This should also be a block element, so that it will fill 100% of the .container */
|
||||
.content {
|
||||
padding:15px;
|
||||
max-width:600px;
|
||||
margin:0 auto;
|
||||
display:block;
|
||||
}
|
||||
|
||||
/* Let's make sure tables in the content area are 100% wide */
|
||||
.content table { width: 100%; }
|
||||
|
||||
|
||||
/* Odds and ends */
|
||||
.column {
|
||||
width: 300px;
|
||||
float:left;
|
||||
}
|
||||
.column tr td { padding: 15px; }
|
||||
.column-wrap {
|
||||
padding:0!important;
|
||||
margin:0 auto;
|
||||
max-width:600px!important;
|
||||
}
|
||||
.column table { width:100%;}
|
||||
.social .column {
|
||||
width: 280px;
|
||||
min-width: 279px;
|
||||
float:left;
|
||||
}
|
||||
|
||||
/* Be sure to place a .clear element after each set of columns, just to be safe */
|
||||
.clear { display: block; clear: both; }
|
||||
|
||||
|
||||
/* -------------------------------------------
|
||||
PHONE
|
||||
For clients that support media queries.
|
||||
Nothing fancy.
|
||||
-------------------------------------------- */
|
||||
@media only screen and (max-width: 600px) {
|
||||
|
||||
a[class="btn"] { display:block!important; margin-bottom:10px!important; background-image:none!important; margin-right:0!important;}
|
||||
|
||||
div[class="column"] { width: auto!important; float:none!important;}
|
||||
|
||||
table.social div[class="column"] {
|
||||
width:auto!important;
|
||||
}
|
||||
|
||||
}
|
||||
{/literal}
|
||||
</style>
|
||||
|
||||
</head>
|
||||
|
||||
<body bgcolor="#FFFFFF" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;-webkit-font-smoothing: antialiased;-webkit-text-size-adjust: none;height: 100%;width: 100%!important;">
|
||||
|
||||
<!-- HEADER -->
|
||||
<table class="head-wrap" bgcolor="#{$bg_header_color}" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;width: 100%;">
|
||||
<tr style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;"></td>
|
||||
<td class="header container" style="margin: 0 auto!important;padding: 0;font-family: Arial, sans-serif;font-size: 12px;display: block!important;max-width: 600px!important;clear: both!important;">
|
||||
|
||||
<div class="content" style="margin: 0 auto;padding: 15px;font-family: Arial, sans-serif;font-size: 12px;max-width: 600px;display: block;">
|
||||
<table bgcolor="#{$bg_header_color}" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;width: 100%;">
|
||||
<tr style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">{if $logo!=""}<img src="http://{$host}/uploads{$logo}?version=1" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;max-width: 100%; max-height: 50px;">{/if}</td>
|
||||
<td align="right" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;"><h6 class="collapse" style="margin: 0!important;padding: 0;font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;font-size: 14px;line-height: 1.1;margin-bottom: 15px;color: #444;font-weight: 900;text-transform: uppercase;">{$date}</h6></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
</td>
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;"></td>
|
||||
</tr>
|
||||
</table><!-- /HEADER -->
|
||||
|
||||
|
||||
<!-- BODY -->
|
||||
<table class="body-wrap" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;width: 100%;">
|
||||
<tr style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;"></td>
|
||||
<td class="container" bgcolor="#FFFFFF" style="margin: 0 auto!important;padding: 0;font-family: Arial, sans-serif;font-size: 12px;display: block!important;max-width: 600px!important;clear: both!important;">
|
||||
|
||||
<div class="content" style="margin: 0 auto;padding: 15px;font-family: Arial, sans-serif;font-size: 12px;max-width: 600px;display: block;">
|
||||
<table style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;width: 100%;">
|
||||
<tr style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<p style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;margin-bottom: 10px;font-weight: normal;line-height: 1.6;">{$user_head}</p>
|
||||
<h4 style="margin: 0;padding: 0;font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;font-size: 23px;line-height: 1.1;margin-bottom: 15px;color: #000;font-weight: 500;">{__ text="Link do zmiany hasła"}</h4>
|
||||
|
||||
<p style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;margin-bottom: 10px;font-weight: normal;line-height: 1.6;">
|
||||
{__ text="Skorzystaj z linku poniżej aby dokonać zmiany hasła."}
|
||||
</p>
|
||||
<!-- Callout Panel -->
|
||||
<p class="callout" style="text-align: center;margin: 0;padding: 15px;font-family: Arial, sans-serif;font-size: 12px;margin-bottom: 15px;font-weight: normal;line-height: 1.6;background-color: #{$bg_action_color};">
|
||||
<a href="{$user_submit}" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;color: #{$bg_action_link_color};font-weight: bold;">{__ text="Zmień hasło"}</a>
|
||||
</p><!-- /Callout Panel -->
|
||||
|
||||
<!-- social & contact -->
|
||||
<table class="social" width="100%" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;background-color: #{$bg_footer_color};width: 100%;">
|
||||
<tr style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">{$user_foot}</td>
|
||||
</tr>
|
||||
</table><!-- /social & contact -->
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><!-- /content -->
|
||||
|
||||
</td>
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;"></td>
|
||||
</tr>
|
||||
</table><!-- /BODY -->
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,4 @@
|
||||
{__ text="Twoje hasło do konta zostało zmienione."}
|
||||
|
||||
{__ text="Twój login"}: {$user_name}
|
||||
{__ text="Twoje hasło"}: {$user_password}
|
||||
@@ -0,0 +1,306 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<head style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
|
||||
<meta name="viewport" content="width=device-width" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<title style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">ZURBemails</title>
|
||||
|
||||
<style style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
{literal}
|
||||
/* -------------------------------------
|
||||
GLOBAL
|
||||
------------------------------------- */
|
||||
* {
|
||||
margin:0;
|
||||
padding:0;
|
||||
}
|
||||
* { font-family: Arial, sans-serif; font-size:12px;}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
.collapse {
|
||||
margin:0;
|
||||
padding:0;
|
||||
}
|
||||
body {
|
||||
-webkit-font-smoothing:antialiased;
|
||||
-webkit-text-size-adjust:none;
|
||||
width: 100%!important;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
|
||||
/* -------------------------------------
|
||||
ELEMENTS
|
||||
------------------------------------- */
|
||||
a { color: #{/literal}{$link_color}{literal};}
|
||||
|
||||
.btn {
|
||||
text-decoration:none;
|
||||
color: #FFF;
|
||||
background-color: #666;
|
||||
padding:10px 16px;
|
||||
font-weight:bold;
|
||||
margin-right:10px;
|
||||
text-align:center;
|
||||
cursor:pointer;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
p.callout {
|
||||
padding:15px;
|
||||
background-color:#ECF8FF;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.callout a {
|
||||
font-weight:bold;
|
||||
color: #2BA6CB;
|
||||
}
|
||||
|
||||
table.social {
|
||||
/* padding:15px; */
|
||||
background-color: #ebebeb;
|
||||
|
||||
}
|
||||
.social .soc-btn {
|
||||
padding: 3px 7px;
|
||||
font-size:12px;
|
||||
margin-bottom:10px;
|
||||
text-decoration:none;
|
||||
color: #FFF;font-weight:bold;
|
||||
display:block;
|
||||
text-align:center;
|
||||
}
|
||||
a.fb { background-color: #3B5998!important; }
|
||||
a.tw { background-color: #1daced!important; }
|
||||
a.gp { background-color: #DB4A39!important; }
|
||||
a.ms { background-color: #000!important; }
|
||||
|
||||
.sidebar .soc-btn {
|
||||
display:block;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
/* -------------------------------------
|
||||
HEADER
|
||||
------------------------------------- */
|
||||
table.head-wrap { width: 100%;}
|
||||
|
||||
.header.container table td.logo { padding: 15px; }
|
||||
.header.container table td.label { padding: 15px; padding-left:0px;}
|
||||
|
||||
|
||||
/* -------------------------------------
|
||||
BODY
|
||||
------------------------------------- */
|
||||
table.body-wrap { width: 100%;}
|
||||
|
||||
|
||||
/* -------------------------------------
|
||||
FOOTER
|
||||
------------------------------------- */
|
||||
table.footer-wrap { width: 100%; clear:both!important;
|
||||
}
|
||||
.footer-wrap .container td.content p { border-top: 1px solid rgb(215,215,215); padding-top:15px;}
|
||||
.footer-wrap .container td.content p {
|
||||
font-size:10px;
|
||||
font-weight: bold;
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* -------------------------------------
|
||||
TYPOGRAPHY
|
||||
------------------------------------- */
|
||||
h1,h2,h3,h4,h5,h6 {
|
||||
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; line-height: 1.1; margin-bottom:15px; color:#000;
|
||||
}
|
||||
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small { font-size: 60%; color: #6f6f6f; line-height: 0; text-transform: none; }
|
||||
|
||||
h1 { font-weight:200; font-size: 44px;}
|
||||
h2 { font-weight:200; font-size: 37px;}
|
||||
h3 { font-weight:500; font-size: 27px;}
|
||||
h4 { font-weight:500; font-size: 23px;}
|
||||
h5 { font-weight:900; font-size: 17px;}
|
||||
h6 { font-weight:900; font-size: 14px; text-transform: uppercase; color:#444;}
|
||||
|
||||
.collapse { margin:0!important;}
|
||||
|
||||
p, ul {
|
||||
margin-bottom: 10px;
|
||||
font-weight: normal;
|
||||
font-size:12px;
|
||||
line-height:1.6;
|
||||
}
|
||||
p.lead { font-size:17px; }
|
||||
p.last { margin-bottom:0px;}
|
||||
|
||||
ul li {
|
||||
margin-left:5px;
|
||||
list-style-position: inside;
|
||||
}
|
||||
|
||||
/* -------------------------------------
|
||||
SIDEBAR
|
||||
------------------------------------- */
|
||||
ul.sidebar {
|
||||
background:#ebebeb;
|
||||
display:block;
|
||||
list-style-type: none;
|
||||
}
|
||||
ul.sidebar li { display: block; margin:0;}
|
||||
ul.sidebar li a {
|
||||
text-decoration:none;
|
||||
color: #666;
|
||||
padding:10px 16px;
|
||||
/* font-weight:bold; */
|
||||
margin-right:10px;
|
||||
/* text-align:center; */
|
||||
cursor:pointer;
|
||||
border-bottom: 1px solid #777777;
|
||||
border-top: 1px solid #FFFFFF;
|
||||
display:block;
|
||||
margin:0;
|
||||
}
|
||||
ul.sidebar li a.last { border-bottom-width:0px;}
|
||||
ul.sidebar li a h1,ul.sidebar li a h2,ul.sidebar li a h3,ul.sidebar li a h4,ul.sidebar li a h5,ul.sidebar li a h6,ul.sidebar li a p { margin-bottom:0!important;}
|
||||
|
||||
|
||||
|
||||
/* ---------------------------------------------------
|
||||
RESPONSIVENESS
|
||||
Nuke it from orbit. It's the only way to be sure.
|
||||
------------------------------------------------------ */
|
||||
|
||||
/* Set a max-width, and make it display as block so it will automatically stretch to that width, but will also shrink down on a phone or something */
|
||||
.container {
|
||||
display:block!important;
|
||||
max-width:600px!important;
|
||||
margin:0 auto!important; /* makes it centered */
|
||||
clear:both!important;
|
||||
}
|
||||
|
||||
/* This should also be a block element, so that it will fill 100% of the .container */
|
||||
.content {
|
||||
padding:15px;
|
||||
max-width:600px;
|
||||
margin:0 auto;
|
||||
display:block;
|
||||
}
|
||||
|
||||
/* Let's make sure tables in the content area are 100% wide */
|
||||
.content table { width: 100%; }
|
||||
|
||||
|
||||
/* Odds and ends */
|
||||
.column {
|
||||
width: 300px;
|
||||
float:left;
|
||||
}
|
||||
.column tr td { padding: 15px; }
|
||||
.column-wrap {
|
||||
padding:0!important;
|
||||
margin:0 auto;
|
||||
max-width:600px!important;
|
||||
}
|
||||
.column table { width:100%;}
|
||||
.social .column {
|
||||
width: 280px;
|
||||
min-width: 279px;
|
||||
float:left;
|
||||
}
|
||||
|
||||
/* Be sure to place a .clear element after each set of columns, just to be safe */
|
||||
.clear { display: block; clear: both; }
|
||||
|
||||
|
||||
/* -------------------------------------------
|
||||
PHONE
|
||||
For clients that support media queries.
|
||||
Nothing fancy.
|
||||
-------------------------------------------- */
|
||||
@media only screen and (max-width: 600px) {
|
||||
|
||||
a[class="btn"] { display:block!important; margin-bottom:10px!important; background-image:none!important; margin-right:0!important;}
|
||||
|
||||
div[class="column"] { width: auto!important; float:none!important;}
|
||||
|
||||
table.social div[class="column"] {
|
||||
width:auto!important;
|
||||
}
|
||||
|
||||
}
|
||||
{/literal}
|
||||
</style>
|
||||
|
||||
</head>
|
||||
|
||||
<body bgcolor="#FFFFFF" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;-webkit-font-smoothing: antialiased;-webkit-text-size-adjust: none;height: 100%;width: 100%!important;">
|
||||
|
||||
<!-- HEADER -->
|
||||
<table class="head-wrap" bgcolor="#{$bg_header_color}" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;width: 100%;">
|
||||
<tr style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;"></td>
|
||||
<td class="header container" style="margin: 0 auto!important;padding: 0;font-family: Arial, sans-serif;font-size: 12px;display: block!important;max-width: 600px!important;clear: both!important;">
|
||||
|
||||
<div class="content" style="margin: 0 auto;padding: 15px;font-family: Arial, sans-serif;font-size: 12px;max-width: 600px;display: block;">
|
||||
<table bgcolor="#{$bg_header_color}" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;width: 100%;">
|
||||
<tr style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">{if $logo!=""}<img src="http://{$host}/uploads{$logo}?version=1" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;max-width: 100%; max-height: 50px;">{/if}</td>
|
||||
<td align="right" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;"><h6 class="collapse" style="margin: 0!important;padding: 0;font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;font-size: 14px;line-height: 1.1;margin-bottom: 15px;color: #444;font-weight: 900;text-transform: uppercase;">{$user_created_at}</h6></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
</td>
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;"></td>
|
||||
</tr>
|
||||
</table><!-- /HEADER -->
|
||||
|
||||
|
||||
<!-- BODY -->
|
||||
<table class="body-wrap" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;width: 100%;">
|
||||
<tr style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;"></td>
|
||||
<td class="container" bgcolor="#FFFFFF" style="margin: 0 auto!important;padding: 0;font-family: Arial, sans-serif;font-size: 12px;display: block!important;max-width: 600px!important;clear: both!important;">
|
||||
|
||||
<div class="content" style="margin: 0 auto;padding: 15px;font-family: Arial, sans-serif;font-size: 12px;max-width: 600px;display: block;">
|
||||
<table style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;width: 100%;">
|
||||
<tr style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<p style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;margin-bottom: 10px;font-weight: normal;line-height: 1.6;">{$user_head}</p>
|
||||
<h4 style="margin: 0;padding: 0;font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;font-size: 23px;line-height: 1.1;margin-bottom: 15px;color: #000;font-weight: 500;">{__ text="Twoje hasło do konta zostało zmienione."}</h4>
|
||||
|
||||
<p style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;margin-bottom: 10px;font-weight: normal;line-height: 1.6;">{$user_content_head}</p>
|
||||
<p style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;margin-bottom: 10px;font-weight: normal;line-height: 1.6;">
|
||||
{__ text="Dane dostępowe do konta"}:<br style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
{__ text="Login"}: <b style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">{$user_name}</b>
|
||||
</p>
|
||||
<!-- Callout Panel -->
|
||||
<p class="callout" style="text-align: center;margin: 0;padding: 15px;font-family: Arial, sans-serif;font-size: 12px;margin-bottom: 15px;font-weight: normal;line-height: 1.6;background-color: #{$bg_action_color};">
|
||||
<a href="{$user_link}" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;color: #{$bg_action_link_color};font-weight: bold;">{__ text="Przejdź na stronę sklepu."}</a>
|
||||
</p><!-- /Callout Panel -->
|
||||
|
||||
<p style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;margin-bottom: 10px;font-weight: normal;line-height: 1.6;">{$user_content_foot}</p>
|
||||
|
||||
<!-- social & contact -->
|
||||
<table class="social" width="100%" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;background-color: #{$bg_footer_color};width: 100%;">
|
||||
<tr style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">{$user_foot}</td>
|
||||
</tr>
|
||||
</table><!-- /social & contact -->
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><!-- /content -->
|
||||
|
||||
</td>
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;"></td>
|
||||
</tr>
|
||||
</table><!-- /BODY -->
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,3 @@
|
||||
{__ text="Twoje hasło do konta zostało zmienione."}
|
||||
|
||||
{__ text="Twój login"}: {$user_name}
|
||||
@@ -0,0 +1,308 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<head style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
|
||||
<meta name="viewport" content="width=device-width" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<title style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">ZURBemails</title>
|
||||
|
||||
<style style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
{literal}
|
||||
/* -------------------------------------
|
||||
GLOBAL
|
||||
------------------------------------- */
|
||||
* {
|
||||
margin:0;
|
||||
padding:0;
|
||||
}
|
||||
* { font-family: Arial, sans-serif; font-size:12px;}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
.collapse {
|
||||
margin:0;
|
||||
padding:0;
|
||||
}
|
||||
body {
|
||||
-webkit-font-smoothing:antialiased;
|
||||
-webkit-text-size-adjust:none;
|
||||
width: 100%!important;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
|
||||
/* -------------------------------------
|
||||
ELEMENTS
|
||||
------------------------------------- */
|
||||
a { color: #{/literal}{$link_color}{literal};}
|
||||
|
||||
.btn {
|
||||
text-decoration:none;
|
||||
color: #FFF;
|
||||
background-color: #666;
|
||||
padding:10px 16px;
|
||||
font-weight:bold;
|
||||
margin-right:10px;
|
||||
text-align:center;
|
||||
cursor:pointer;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
p.callout {
|
||||
padding:15px;
|
||||
background-color:#ECF8FF;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.callout a {
|
||||
font-weight:bold;
|
||||
color: #2BA6CB;
|
||||
}
|
||||
|
||||
table.social {
|
||||
/* padding:15px; */
|
||||
background-color: #ebebeb;
|
||||
|
||||
}
|
||||
.social .soc-btn {
|
||||
padding: 3px 7px;
|
||||
font-size:12px;
|
||||
margin-bottom:10px;
|
||||
text-decoration:none;
|
||||
color: #FFF;font-weight:bold;
|
||||
display:block;
|
||||
text-align:center;
|
||||
}
|
||||
a.fb { background-color: #3B5998!important; }
|
||||
a.tw { background-color: #1daced!important; }
|
||||
a.gp { background-color: #DB4A39!important; }
|
||||
a.ms { background-color: #000!important; }
|
||||
|
||||
.sidebar .soc-btn {
|
||||
display:block;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
/* -------------------------------------
|
||||
HEADER
|
||||
------------------------------------- */
|
||||
table.head-wrap { width: 100%;}
|
||||
|
||||
.header.container table td.logo { padding: 15px; }
|
||||
.header.container table td.label { padding: 15px; padding-left:0px;}
|
||||
|
||||
|
||||
/* -------------------------------------
|
||||
BODY
|
||||
------------------------------------- */
|
||||
table.body-wrap { width: 100%;}
|
||||
|
||||
|
||||
/* -------------------------------------
|
||||
FOOTER
|
||||
------------------------------------- */
|
||||
table.footer-wrap { width: 100%; clear:both!important;
|
||||
}
|
||||
.footer-wrap .container td.content p { border-top: 1px solid rgb(215,215,215); padding-top:15px;}
|
||||
.footer-wrap .container td.content p {
|
||||
font-size:10px;
|
||||
font-weight: bold;
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* -------------------------------------
|
||||
TYPOGRAPHY
|
||||
------------------------------------- */
|
||||
h1,h2,h3,h4,h5,h6 {
|
||||
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; line-height: 1.1; margin-bottom:15px; color:#000;
|
||||
}
|
||||
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small { font-size: 60%; color: #6f6f6f; line-height: 0; text-transform: none; }
|
||||
|
||||
h1 { font-weight:200; font-size: 44px;}
|
||||
h2 { font-weight:200; font-size: 37px;}
|
||||
h3 { font-weight:500; font-size: 27px;}
|
||||
h4 { font-weight:500; font-size: 23px;}
|
||||
h5 { font-weight:900; font-size: 17px;}
|
||||
h6 { font-weight:900; font-size: 14px; text-transform: uppercase; color:#444;}
|
||||
|
||||
.collapse { margin:0!important;}
|
||||
|
||||
p, ul {
|
||||
margin-bottom: 10px;
|
||||
font-weight: normal;
|
||||
font-size:12px;
|
||||
line-height:1.6;
|
||||
}
|
||||
p.lead { font-size:17px; }
|
||||
p.last { margin-bottom:0px;}
|
||||
|
||||
ul li {
|
||||
margin-left:5px;
|
||||
list-style-position: inside;
|
||||
}
|
||||
|
||||
/* -------------------------------------
|
||||
SIDEBAR
|
||||
------------------------------------- */
|
||||
ul.sidebar {
|
||||
background:#ebebeb;
|
||||
display:block;
|
||||
list-style-type: none;
|
||||
}
|
||||
ul.sidebar li { display: block; margin:0;}
|
||||
ul.sidebar li a {
|
||||
text-decoration:none;
|
||||
color: #666;
|
||||
padding:10px 16px;
|
||||
/* font-weight:bold; */
|
||||
margin-right:10px;
|
||||
/* text-align:center; */
|
||||
cursor:pointer;
|
||||
border-bottom: 1px solid #777777;
|
||||
border-top: 1px solid #FFFFFF;
|
||||
display:block;
|
||||
margin:0;
|
||||
}
|
||||
ul.sidebar li a.last { border-bottom-width:0px;}
|
||||
ul.sidebar li a h1,ul.sidebar li a h2,ul.sidebar li a h3,ul.sidebar li a h4,ul.sidebar li a h5,ul.sidebar li a h6,ul.sidebar li a p { margin-bottom:0!important;}
|
||||
|
||||
|
||||
|
||||
/* ---------------------------------------------------
|
||||
RESPONSIVENESS
|
||||
Nuke it from orbit. It's the only way to be sure.
|
||||
------------------------------------------------------ */
|
||||
|
||||
/* Set a max-width, and make it display as block so it will automatically stretch to that width, but will also shrink down on a phone or something */
|
||||
.container {
|
||||
display:block!important;
|
||||
max-width:600px!important;
|
||||
margin:0 auto!important; /* makes it centered */
|
||||
clear:both!important;
|
||||
}
|
||||
|
||||
/* This should also be a block element, so that it will fill 100% of the .container */
|
||||
.content {
|
||||
padding:15px;
|
||||
max-width:600px;
|
||||
margin:0 auto;
|
||||
display:block;
|
||||
}
|
||||
|
||||
/* Let's make sure tables in the content area are 100% wide */
|
||||
.content table { width: 100%; }
|
||||
|
||||
|
||||
/* Odds and ends */
|
||||
.column {
|
||||
width: 300px;
|
||||
float:left;
|
||||
}
|
||||
.column tr td { padding: 15px; }
|
||||
.column-wrap {
|
||||
padding:0!important;
|
||||
margin:0 auto;
|
||||
max-width:600px!important;
|
||||
}
|
||||
.column table { width:100%;}
|
||||
.social .column {
|
||||
width: 280px;
|
||||
min-width: 279px;
|
||||
float:left;
|
||||
}
|
||||
|
||||
/* Be sure to place a .clear element after each set of columns, just to be safe */
|
||||
.clear { display: block; clear: both; }
|
||||
|
||||
|
||||
/* -------------------------------------------
|
||||
PHONE
|
||||
For clients that support media queries.
|
||||
Nothing fancy.
|
||||
-------------------------------------------- */
|
||||
@media only screen and (max-width: 600px) {
|
||||
|
||||
a[class="btn"] { display:block!important; margin-bottom:10px!important; background-image:none!important; margin-right:0!important;}
|
||||
|
||||
div[class="column"] { width: auto!important; float:none!important;}
|
||||
|
||||
table.social div[class="column"] {
|
||||
width:auto!important;
|
||||
}
|
||||
|
||||
}
|
||||
{/literal}
|
||||
</style>
|
||||
|
||||
</head>
|
||||
|
||||
<body bgcolor="#FFFFFF" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;-webkit-font-smoothing: antialiased;-webkit-text-size-adjust: none;height: 100%;width: 100%!important;">
|
||||
|
||||
<!-- HEADER -->
|
||||
<table class="head-wrap" bgcolor="#{$bg_header_color}" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;width: 100%;">
|
||||
<tr style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;"></td>
|
||||
<td class="header container" style="margin: 0 auto!important;padding: 0;font-family: Arial, sans-serif;font-size: 12px;display: block!important;max-width: 600px!important;clear: both!important;">
|
||||
|
||||
<div class="content" style="margin: 0 auto;padding: 15px;font-family: Arial, sans-serif;font-size: 12px;max-width: 600px;display: block;">
|
||||
<table bgcolor="#{$bg_header_color}" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;width: 100%;">
|
||||
<tr style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">{if $logo!=""}<img src="http://{$host}/uploads{$logo}?version=1" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;max-width: 100%; max-height: 50px;">{/if}</td>
|
||||
<td align="right" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;"><h6 class="collapse" style="margin: 0!important;padding: 0;font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;font-size: 14px;line-height: 1.1;margin-bottom: 15px;color: #444;font-weight: 900;text-transform: uppercase;">{$user_created_at}</h6></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
</td>
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;"></td>
|
||||
</tr>
|
||||
</table><!-- /HEADER -->
|
||||
|
||||
|
||||
<!-- BODY -->
|
||||
<table class="body-wrap" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;width: 100%;">
|
||||
<tr style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;"></td>
|
||||
<td class="container" bgcolor="#FFFFFF" style="margin: 0 auto!important;padding: 0;font-family: Arial, sans-serif;font-size: 12px;display: block!important;max-width: 600px!important;clear: both!important;">
|
||||
|
||||
<div class="content" style="margin: 0 auto;padding: 15px;font-family: Arial, sans-serif;font-size: 12px;max-width: 600px;display: block;">
|
||||
<table style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;width: 100%;">
|
||||
<tr style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<p style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;margin-bottom: 10px;font-weight: normal;line-height: 1.6;">{$user_head}</p>
|
||||
<h4 style="margin: 0;padding: 0;font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;font-size: 23px;line-height: 1.1;margin-bottom: 15px;color: #000;font-weight: 500;">{__ text="Rejestracja nowego klienta"}</h4>
|
||||
|
||||
<p style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;margin-bottom: 10px;font-weight: normal;line-height: 1.6;">{$user_content_head}</p>
|
||||
<p style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;margin-bottom: 10px;font-weight: normal;line-height: 1.6;">
|
||||
<span style="font-size:12px; color:#576278;">{__ text="Informacje o koncie klienta"}:</span><br>
|
||||
|
||||
<span style="font-size:12px;color:#576278;">{__ text="Numer ID"}: </span><span style="font-size:12px;color:#404040; font-weight:bold;">{$user_id}</span><br>
|
||||
<span style="font-size:12px;color:#576278;">{__ text="Login"}: </span><span style="font-size:12px;color:#404040; font-weight:bold;">{$user_name}</span><br>
|
||||
</p>
|
||||
<!-- Callout Panel -->
|
||||
<p class="callout" style="text-align: center;margin: 0;padding: 15px;font-family: Arial, sans-serif;font-size: 12px;margin-bottom: 15px;font-weight: normal;line-height: 1.6;background-color: #{$bg_action_color};">
|
||||
<a href="{$user_link}" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;color: #{$bg_action_link_color};font-weight: bold;">{__ text="Przejdź do edycji konta"} : {$user_name}</a>
|
||||
</p><!-- /Callout Panel -->
|
||||
|
||||
<p style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;margin-bottom: 10px;font-weight: normal;line-height: 1.6;">{$user_content_foot}</p>
|
||||
|
||||
<!-- social & contact -->
|
||||
<table class="social" width="100%" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;background-color: #{$bg_footer_color};width: 100%;">
|
||||
<tr style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">{$user_foot}</td>
|
||||
</tr>
|
||||
</table><!-- /social & contact -->
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><!-- /content -->
|
||||
|
||||
</td>
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;"></td>
|
||||
</tr>
|
||||
</table><!-- /BODY -->
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,5 @@
|
||||
{__ text="W sklepie zarejestrował się nowy klient." langCatalogue="_backend"}
|
||||
|
||||
{__ text="ID klienta" langCatalogue="_backend"}: {$user_id}
|
||||
{__ text="Login klienta" langCatalogue="_backend"}: {$user_name}
|
||||
{__ text="Data założenia konta" langCatalogue="_backend"}: {$user_created_at}
|
||||
@@ -0,0 +1,306 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<head style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
|
||||
<meta name="viewport" content="width=device-width" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<title style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">ZURBemails</title>
|
||||
|
||||
<style style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
{literal}
|
||||
/* -------------------------------------
|
||||
GLOBAL
|
||||
------------------------------------- */
|
||||
* {
|
||||
margin:0;
|
||||
padding:0;
|
||||
}
|
||||
* { font-family: Arial, sans-serif; font-size:12px;}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
.collapse {
|
||||
margin:0;
|
||||
padding:0;
|
||||
}
|
||||
body {
|
||||
-webkit-font-smoothing:antialiased;
|
||||
-webkit-text-size-adjust:none;
|
||||
width: 100%!important;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
|
||||
/* -------------------------------------
|
||||
ELEMENTS
|
||||
------------------------------------- */
|
||||
a { color: #{/literal}{$link_color}{literal};}
|
||||
|
||||
.btn {
|
||||
text-decoration:none;
|
||||
color: #FFF;
|
||||
background-color: #666;
|
||||
padding:10px 16px;
|
||||
font-weight:bold;
|
||||
margin-right:10px;
|
||||
text-align:center;
|
||||
cursor:pointer;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
p.callout {
|
||||
padding:15px;
|
||||
background-color:#ECF8FF;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.callout a {
|
||||
font-weight:bold;
|
||||
color: #2BA6CB;
|
||||
}
|
||||
|
||||
table.social {
|
||||
/* padding:15px; */
|
||||
background-color: #ebebeb;
|
||||
|
||||
}
|
||||
.social .soc-btn {
|
||||
padding: 3px 7px;
|
||||
font-size:12px;
|
||||
margin-bottom:10px;
|
||||
text-decoration:none;
|
||||
color: #FFF;font-weight:bold;
|
||||
display:block;
|
||||
text-align:center;
|
||||
}
|
||||
a.fb { background-color: #3B5998!important; }
|
||||
a.tw { background-color: #1daced!important; }
|
||||
a.gp { background-color: #DB4A39!important; }
|
||||
a.ms { background-color: #000!important; }
|
||||
|
||||
.sidebar .soc-btn {
|
||||
display:block;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
/* -------------------------------------
|
||||
HEADER
|
||||
------------------------------------- */
|
||||
table.head-wrap { width: 100%;}
|
||||
|
||||
.header.container table td.logo { padding: 15px; }
|
||||
.header.container table td.label { padding: 15px; padding-left:0px;}
|
||||
|
||||
|
||||
/* -------------------------------------
|
||||
BODY
|
||||
------------------------------------- */
|
||||
table.body-wrap { width: 100%;}
|
||||
|
||||
|
||||
/* -------------------------------------
|
||||
FOOTER
|
||||
------------------------------------- */
|
||||
table.footer-wrap { width: 100%; clear:both!important;
|
||||
}
|
||||
.footer-wrap .container td.content p { border-top: 1px solid rgb(215,215,215); padding-top:15px;}
|
||||
.footer-wrap .container td.content p {
|
||||
font-size:10px;
|
||||
font-weight: bold;
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* -------------------------------------
|
||||
TYPOGRAPHY
|
||||
------------------------------------- */
|
||||
h1,h2,h3,h4,h5,h6 {
|
||||
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; line-height: 1.1; margin-bottom:15px; color:#000;
|
||||
}
|
||||
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small { font-size: 60%; color: #6f6f6f; line-height: 0; text-transform: none; }
|
||||
|
||||
h1 { font-weight:200; font-size: 44px;}
|
||||
h2 { font-weight:200; font-size: 37px;}
|
||||
h3 { font-weight:500; font-size: 27px;}
|
||||
h4 { font-weight:500; font-size: 23px;}
|
||||
h5 { font-weight:900; font-size: 17px;}
|
||||
h6 { font-weight:900; font-size: 14px; text-transform: uppercase; color:#444;}
|
||||
|
||||
.collapse { margin:0!important;}
|
||||
|
||||
p, ul {
|
||||
margin-bottom: 10px;
|
||||
font-weight: normal;
|
||||
font-size:12px;
|
||||
line-height:1.6;
|
||||
}
|
||||
p.lead { font-size:17px; }
|
||||
p.last { margin-bottom:0px;}
|
||||
|
||||
ul li {
|
||||
margin-left:5px;
|
||||
list-style-position: inside;
|
||||
}
|
||||
|
||||
/* -------------------------------------
|
||||
SIDEBAR
|
||||
------------------------------------- */
|
||||
ul.sidebar {
|
||||
background:#ebebeb;
|
||||
display:block;
|
||||
list-style-type: none;
|
||||
}
|
||||
ul.sidebar li { display: block; margin:0;}
|
||||
ul.sidebar li a {
|
||||
text-decoration:none;
|
||||
color: #666;
|
||||
padding:10px 16px;
|
||||
/* font-weight:bold; */
|
||||
margin-right:10px;
|
||||
/* text-align:center; */
|
||||
cursor:pointer;
|
||||
border-bottom: 1px solid #777777;
|
||||
border-top: 1px solid #FFFFFF;
|
||||
display:block;
|
||||
margin:0;
|
||||
}
|
||||
ul.sidebar li a.last { border-bottom-width:0px;}
|
||||
ul.sidebar li a h1,ul.sidebar li a h2,ul.sidebar li a h3,ul.sidebar li a h4,ul.sidebar li a h5,ul.sidebar li a h6,ul.sidebar li a p { margin-bottom:0!important;}
|
||||
|
||||
|
||||
|
||||
/* ---------------------------------------------------
|
||||
RESPONSIVENESS
|
||||
Nuke it from orbit. It's the only way to be sure.
|
||||
------------------------------------------------------ */
|
||||
|
||||
/* Set a max-width, and make it display as block so it will automatically stretch to that width, but will also shrink down on a phone or something */
|
||||
.container {
|
||||
display:block!important;
|
||||
max-width:600px!important;
|
||||
margin:0 auto!important; /* makes it centered */
|
||||
clear:both!important;
|
||||
}
|
||||
|
||||
/* This should also be a block element, so that it will fill 100% of the .container */
|
||||
.content {
|
||||
padding:15px;
|
||||
max-width:600px;
|
||||
margin:0 auto;
|
||||
display:block;
|
||||
}
|
||||
|
||||
/* Let's make sure tables in the content area are 100% wide */
|
||||
.content table { width: 100%; }
|
||||
|
||||
|
||||
/* Odds and ends */
|
||||
.column {
|
||||
width: 300px;
|
||||
float:left;
|
||||
}
|
||||
.column tr td { padding: 15px; }
|
||||
.column-wrap {
|
||||
padding:0!important;
|
||||
margin:0 auto;
|
||||
max-width:600px!important;
|
||||
}
|
||||
.column table { width:100%;}
|
||||
.social .column {
|
||||
width: 280px;
|
||||
min-width: 279px;
|
||||
float:left;
|
||||
}
|
||||
|
||||
/* Be sure to place a .clear element after each set of columns, just to be safe */
|
||||
.clear { display: block; clear: both; }
|
||||
|
||||
|
||||
/* -------------------------------------------
|
||||
PHONE
|
||||
For clients that support media queries.
|
||||
Nothing fancy.
|
||||
-------------------------------------------- */
|
||||
@media only screen and (max-width: 600px) {
|
||||
|
||||
a[class="btn"] { display:block!important; margin-bottom:10px!important; background-image:none!important; margin-right:0!important;}
|
||||
|
||||
div[class="column"] { width: auto!important; float:none!important;}
|
||||
|
||||
table.social div[class="column"] {
|
||||
width:auto!important;
|
||||
}
|
||||
|
||||
}
|
||||
{/literal}
|
||||
</style>
|
||||
|
||||
</head>
|
||||
|
||||
<body bgcolor="#FFFFFF" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;-webkit-font-smoothing: antialiased;-webkit-text-size-adjust: none;height: 100%;width: 100%!important;">
|
||||
|
||||
<!-- HEADER -->
|
||||
<table class="head-wrap" bgcolor="#{$bg_header_color}" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;width: 100%;">
|
||||
<tr style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;"></td>
|
||||
<td class="header container" style="margin: 0 auto!important;padding: 0;font-family: Arial, sans-serif;font-size: 12px;display: block!important;max-width: 600px!important;clear: both!important;">
|
||||
|
||||
<div class="content" style="margin: 0 auto;padding: 15px;font-family: Arial, sans-serif;font-size: 12px;max-width: 600px;display: block;">
|
||||
<table bgcolor="#{$bg_header_color}" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;width: 100%;">
|
||||
<tr style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">{if $logo!=""}<img src="http://{$host}/uploads{$logo}?version=1" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;max-width: 100%; max-height: 50px;">{/if}</td>
|
||||
<td align="right" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;"><h6 class="collapse" style="margin: 0!important;padding: 0;font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;font-size: 14px;line-height: 1.1;margin-bottom: 15px;color: #444;font-weight: 900;text-transform: uppercase;">{$user_created_at}</h6></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
</td>
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;"></td>
|
||||
</tr>
|
||||
</table><!-- /HEADER -->
|
||||
|
||||
|
||||
<!-- BODY -->
|
||||
<table class="body-wrap" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;width: 100%;">
|
||||
<tr style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;"></td>
|
||||
<td class="container" bgcolor="#FFFFFF" style="margin: 0 auto!important;padding: 0;font-family: Arial, sans-serif;font-size: 12px;display: block!important;max-width: 600px!important;clear: both!important;">
|
||||
|
||||
<div class="content" style="margin: 0 auto;padding: 15px;font-family: Arial, sans-serif;font-size: 12px;max-width: 600px;display: block;">
|
||||
<table style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;width: 100%;">
|
||||
<tr style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<p style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;margin-bottom: 10px;font-weight: normal;line-height: 1.6;">{$user_head}</p>
|
||||
<h4 style="margin: 0;padding: 0;font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;font-size: 23px;line-height: 1.1;margin-bottom: 15px;color: #000;font-weight: 500;">{__ text="Potwierdzenie rejestracji"}</h4>
|
||||
|
||||
<p style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;margin-bottom: 10px;font-weight: normal;line-height: 1.6;">{$user_content_head}</p>
|
||||
<p style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;margin-bottom: 10px;font-weight: normal;line-height: 1.6;">
|
||||
{__ text="Dane dostępowe do konta"}:<br style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
{__ text="Login"}: <b style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">{$user_name}</b>
|
||||
</p>
|
||||
<!-- Callout Panel -->
|
||||
<p class="callout" style="text-align: center;margin: 0;padding: 15px;font-family: Arial, sans-serif;font-size: 12px;margin-bottom: 15px;font-weight: normal;line-height: 1.6;background-color: #{$bg_action_color};">
|
||||
<a href="{$user_submit}" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;color: #{$bg_action_link_color};font-weight: bold;">{__ text="Potwierdź rejestrację"}</a>
|
||||
</p><!-- /Callout Panel -->
|
||||
|
||||
<p style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;margin-bottom: 10px;font-weight: normal;line-height: 1.6;">{$user_content_foot}</p>
|
||||
|
||||
<!-- social & contact -->
|
||||
<table class="social" width="100%" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;background-color: #{$bg_footer_color};width: 100%;">
|
||||
<tr style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">{$user_foot}</td>
|
||||
</tr>
|
||||
</table><!-- /social & contact -->
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><!-- /content -->
|
||||
|
||||
</td>
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;"></td>
|
||||
</tr>
|
||||
</table><!-- /BODY -->
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,11 @@
|
||||
{$user_head}
|
||||
|
||||
{$user_content_head}
|
||||
|
||||
{__ text="Twoje konto w sklepie zostało założone."}
|
||||
{__ text="Twój login"}: {$user_name}
|
||||
{__ text="Data założenia konta"}: {$user_created_at}
|
||||
|
||||
{$user_content_foot}
|
||||
|
||||
{$user_foot}
|
||||
@@ -0,0 +1,304 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<head style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
|
||||
<meta name="viewport" content="width=device-width" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<title style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">ZURBemails</title>
|
||||
|
||||
<style style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
{literal}
|
||||
/* -------------------------------------
|
||||
GLOBAL
|
||||
------------------------------------- */
|
||||
* {
|
||||
margin:0;
|
||||
padding:0;
|
||||
}
|
||||
* { font-family: Arial, sans-serif; font-size:12px;}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
.collapse {
|
||||
margin:0;
|
||||
padding:0;
|
||||
}
|
||||
body {
|
||||
-webkit-font-smoothing:antialiased;
|
||||
-webkit-text-size-adjust:none;
|
||||
width: 100%!important;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
|
||||
/* -------------------------------------
|
||||
ELEMENTS
|
||||
------------------------------------- */
|
||||
a { color: #{/literal}{$link_color}{literal};}
|
||||
|
||||
.btn {
|
||||
text-decoration:none;
|
||||
color: #FFF;
|
||||
background-color: #666;
|
||||
padding:10px 16px;
|
||||
font-weight:bold;
|
||||
margin-right:10px;
|
||||
text-align:center;
|
||||
cursor:pointer;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
p.callout {
|
||||
padding:15px;
|
||||
background-color:#ECF8FF;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.callout a {
|
||||
font-weight:bold;
|
||||
color: #2BA6CB;
|
||||
}
|
||||
|
||||
table.social {
|
||||
/* padding:15px; */
|
||||
background-color: #ebebeb;
|
||||
|
||||
}
|
||||
.social .soc-btn {
|
||||
padding: 3px 7px;
|
||||
font-size:12px;
|
||||
margin-bottom:10px;
|
||||
text-decoration:none;
|
||||
color: #FFF;font-weight:bold;
|
||||
display:block;
|
||||
text-align:center;
|
||||
}
|
||||
a.fb { background-color: #3B5998!important; }
|
||||
a.tw { background-color: #1daced!important; }
|
||||
a.gp { background-color: #DB4A39!important; }
|
||||
a.ms { background-color: #000!important; }
|
||||
|
||||
.sidebar .soc-btn {
|
||||
display:block;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
/* -------------------------------------
|
||||
HEADER
|
||||
------------------------------------- */
|
||||
table.head-wrap { width: 100%;}
|
||||
|
||||
.header.container table td.logo { padding: 15px; }
|
||||
.header.container table td.label { padding: 15px; padding-left:0px;}
|
||||
|
||||
|
||||
/* -------------------------------------
|
||||
BODY
|
||||
------------------------------------- */
|
||||
table.body-wrap { width: 100%;}
|
||||
|
||||
|
||||
/* -------------------------------------
|
||||
FOOTER
|
||||
------------------------------------- */
|
||||
table.footer-wrap { width: 100%; clear:both!important;
|
||||
}
|
||||
.footer-wrap .container td.content p { border-top: 1px solid rgb(215,215,215); padding-top:15px;}
|
||||
.footer-wrap .container td.content p {
|
||||
font-size:10px;
|
||||
font-weight: bold;
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* -------------------------------------
|
||||
TYPOGRAPHY
|
||||
------------------------------------- */
|
||||
h1,h2,h3,h4,h5,h6 {
|
||||
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; line-height: 1.1; margin-bottom:15px; color:#000;
|
||||
}
|
||||
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small { font-size: 60%; color: #6f6f6f; line-height: 0; text-transform: none; }
|
||||
|
||||
h1 { font-weight:200; font-size: 44px;}
|
||||
h2 { font-weight:200; font-size: 37px;}
|
||||
h3 { font-weight:500; font-size: 27px;}
|
||||
h4 { font-weight:500; font-size: 23px;}
|
||||
h5 { font-weight:900; font-size: 17px;}
|
||||
h6 { font-weight:900; font-size: 14px; text-transform: uppercase; color:#444;}
|
||||
|
||||
.collapse { margin:0!important;}
|
||||
|
||||
p, ul {
|
||||
margin-bottom: 10px;
|
||||
font-weight: normal;
|
||||
font-size:12px;
|
||||
line-height:1.6;
|
||||
}
|
||||
p.lead { font-size:17px; }
|
||||
p.last { margin-bottom:0px;}
|
||||
|
||||
ul li {
|
||||
margin-left:5px;
|
||||
list-style-position: inside;
|
||||
}
|
||||
|
||||
/* -------------------------------------
|
||||
SIDEBAR
|
||||
------------------------------------- */
|
||||
ul.sidebar {
|
||||
background:#ebebeb;
|
||||
display:block;
|
||||
list-style-type: none;
|
||||
}
|
||||
ul.sidebar li { display: block; margin:0;}
|
||||
ul.sidebar li a {
|
||||
text-decoration:none;
|
||||
color: #666;
|
||||
padding:10px 16px;
|
||||
/* font-weight:bold; */
|
||||
margin-right:10px;
|
||||
/* text-align:center; */
|
||||
cursor:pointer;
|
||||
border-bottom: 1px solid #777777;
|
||||
border-top: 1px solid #FFFFFF;
|
||||
display:block;
|
||||
margin:0;
|
||||
}
|
||||
ul.sidebar li a.last { border-bottom-width:0px;}
|
||||
ul.sidebar li a h1,ul.sidebar li a h2,ul.sidebar li a h3,ul.sidebar li a h4,ul.sidebar li a h5,ul.sidebar li a h6,ul.sidebar li a p { margin-bottom:0!important;}
|
||||
|
||||
|
||||
|
||||
/* ---------------------------------------------------
|
||||
RESPONSIVENESS
|
||||
Nuke it from orbit. It's the only way to be sure.
|
||||
------------------------------------------------------ */
|
||||
|
||||
/* Set a max-width, and make it display as block so it will automatically stretch to that width, but will also shrink down on a phone or something */
|
||||
.container {
|
||||
display:block!important;
|
||||
max-width:600px!important;
|
||||
margin:0 auto!important; /* makes it centered */
|
||||
clear:both!important;
|
||||
}
|
||||
|
||||
/* This should also be a block element, so that it will fill 100% of the .container */
|
||||
.content {
|
||||
padding:15px;
|
||||
max-width:600px;
|
||||
margin:0 auto;
|
||||
display:block;
|
||||
}
|
||||
|
||||
/* Let's make sure tables in the content area are 100% wide */
|
||||
.content table { width: 100%; }
|
||||
|
||||
|
||||
/* Odds and ends */
|
||||
.column {
|
||||
width: 300px;
|
||||
float:left;
|
||||
}
|
||||
.column tr td { padding: 15px; }
|
||||
.column-wrap {
|
||||
padding:0!important;
|
||||
margin:0 auto;
|
||||
max-width:600px!important;
|
||||
}
|
||||
.column table { width:100%;}
|
||||
.social .column {
|
||||
width: 280px;
|
||||
min-width: 279px;
|
||||
float:left;
|
||||
}
|
||||
|
||||
/* Be sure to place a .clear element after each set of columns, just to be safe */
|
||||
.clear { display: block; clear: both; }
|
||||
|
||||
|
||||
/* -------------------------------------------
|
||||
PHONE
|
||||
For clients that support media queries.
|
||||
Nothing fancy.
|
||||
-------------------------------------------- */
|
||||
@media only screen and (max-width: 600px) {
|
||||
|
||||
a[class="btn"] { display:block!important; margin-bottom:10px!important; background-image:none!important; margin-right:0!important;}
|
||||
|
||||
div[class="column"] { width: auto!important; float:none!important;}
|
||||
|
||||
table.social div[class="column"] {
|
||||
width:auto!important;
|
||||
}
|
||||
|
||||
}
|
||||
{/literal}
|
||||
</style>
|
||||
|
||||
</head>
|
||||
|
||||
<body bgcolor="#FFFFFF" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;-webkit-font-smoothing: antialiased;-webkit-text-size-adjust: none;height: 100%;width: 100%!important;">
|
||||
|
||||
<!-- HEADER -->
|
||||
<table class="head-wrap" bgcolor="#{$bg_header_color}" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;width: 100%;">
|
||||
<tr style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;"></td>
|
||||
<td class="header container" style="margin: 0 auto!important;padding: 0;font-family: Arial, sans-serif;font-size: 12px;display: block!important;max-width: 600px!important;clear: both!important;">
|
||||
|
||||
<div class="content" style="margin: 0 auto;padding: 15px;font-family: Arial, sans-serif;font-size: 12px;max-width: 600px;display: block;">
|
||||
<table bgcolor="#{$bg_header_color}" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;width: 100%;">
|
||||
<tr style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">{if $logo!=""}<img src="http://{$host}/uploads{$logo}?version=1" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;max-width: 100%; max-height: 50px;">{/if}</td>
|
||||
<td align="right" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;"><h6 class="collapse" style="margin: 0!important;padding: 0;font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;font-size: 14px;line-height: 1.1;margin-bottom: 15px;color: #444;font-weight: 900;text-transform: uppercase;">{$user_created_at}</h6></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
</td>
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;"></td>
|
||||
</tr>
|
||||
</table><!-- /HEADER -->
|
||||
|
||||
|
||||
<!-- BODY -->
|
||||
<table class="body-wrap" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;width: 100%;">
|
||||
<tr style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;"></td>
|
||||
<td class="container" bgcolor="#FFFFFF" style="margin: 0 auto!important;padding: 0;font-family: Arial, sans-serif;font-size: 12px;display: block!important;max-width: 600px!important;clear: both!important;">
|
||||
|
||||
<div class="content" style="margin: 0 auto;padding: 15px;font-family: Arial, sans-serif;font-size: 12px;max-width: 600px;display: block;">
|
||||
<table style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;width: 100%;">
|
||||
<tr style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<p style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;margin-bottom: 10px;font-weight: normal;line-height: 1.6;">{$user_head}</p>
|
||||
<h4 style="margin: 0;padding: 0;font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;font-size: 23px;line-height: 1.1;margin-bottom: 15px;color: #000;font-weight: 500;">{__ text="Prośba o potwierdzenie usunięcia konta."}</h4>
|
||||
|
||||
|
||||
<p style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;margin-bottom: 10px;font-weight: normal;line-height: 1.6;">
|
||||
{__ text="Operacja usunięcia konta wymaga potwierdzenia. Skorzystaj z linku poniżej aby potwierdzić usunięcie konta."}<br style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
{__ text="Login"}: <b style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">{$user_name}</b>
|
||||
</p>
|
||||
<!-- Callout Panel -->
|
||||
<p class="callout" style="text-align: center;margin: 0;padding: 15px;font-family: Arial, sans-serif;font-size: 12px;margin-bottom: 15px;font-weight: normal;line-height: 1.6;background-color: #{$bg_action_color};">
|
||||
<a href="{$user_submit}" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;color: #{$bg_action_link_color};font-weight: bold;">{__ text="Potwierdź usunięcie konta"}</a>
|
||||
</p><!-- /Callout Panel -->
|
||||
|
||||
<!-- social & contact -->
|
||||
<table class="social" width="100%" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;background-color: #{$bg_footer_color};width: 100%;">
|
||||
<tr style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">{$user_foot}</td>
|
||||
</tr>
|
||||
</table><!-- /social & contact -->
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><!-- /content -->
|
||||
|
||||
</td>
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;"></td>
|
||||
</tr>
|
||||
</table><!-- /BODY -->
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,9 @@
|
||||
{$user_head}
|
||||
|
||||
{__ text="Twoje konto w sklepie zostało założone."}
|
||||
{__ text="Twój login"}: {$user_name}
|
||||
{__ text="Twoje hasło"}: {$user_password}
|
||||
{__ text="Data założenia konta"}: {$user_created_at}
|
||||
{$user_submit}
|
||||
|
||||
{$user_foot}
|
||||
@@ -0,0 +1,304 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<head style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
|
||||
<meta name="viewport" content="width=device-width" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<title style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">ZURBemails</title>
|
||||
|
||||
<style style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
{literal}
|
||||
/* -------------------------------------
|
||||
GLOBAL
|
||||
------------------------------------- */
|
||||
* {
|
||||
margin:0;
|
||||
padding:0;
|
||||
}
|
||||
* { font-family: Arial, sans-serif; font-size:12px;}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
.collapse {
|
||||
margin:0;
|
||||
padding:0;
|
||||
}
|
||||
body {
|
||||
-webkit-font-smoothing:antialiased;
|
||||
-webkit-text-size-adjust:none;
|
||||
width: 100%!important;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
|
||||
/* -------------------------------------
|
||||
ELEMENTS
|
||||
------------------------------------- */
|
||||
a { color: #{/literal}{$link_color}{literal};}
|
||||
|
||||
.btn {
|
||||
text-decoration:none;
|
||||
color: #FFF;
|
||||
background-color: #666;
|
||||
padding:10px 16px;
|
||||
font-weight:bold;
|
||||
margin-right:10px;
|
||||
text-align:center;
|
||||
cursor:pointer;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
p.callout {
|
||||
padding:15px;
|
||||
background-color:#ECF8FF;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.callout a {
|
||||
font-weight:bold;
|
||||
color: #2BA6CB;
|
||||
}
|
||||
|
||||
table.social {
|
||||
/* padding:15px; */
|
||||
background-color: #ebebeb;
|
||||
|
||||
}
|
||||
.social .soc-btn {
|
||||
padding: 3px 7px;
|
||||
font-size:12px;
|
||||
margin-bottom:10px;
|
||||
text-decoration:none;
|
||||
color: #FFF;font-weight:bold;
|
||||
display:block;
|
||||
text-align:center;
|
||||
}
|
||||
a.fb { background-color: #3B5998!important; }
|
||||
a.tw { background-color: #1daced!important; }
|
||||
a.gp { background-color: #DB4A39!important; }
|
||||
a.ms { background-color: #000!important; }
|
||||
|
||||
.sidebar .soc-btn {
|
||||
display:block;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
/* -------------------------------------
|
||||
HEADER
|
||||
------------------------------------- */
|
||||
table.head-wrap { width: 100%;}
|
||||
|
||||
.header.container table td.logo { padding: 15px; }
|
||||
.header.container table td.label { padding: 15px; padding-left:0px;}
|
||||
|
||||
|
||||
/* -------------------------------------
|
||||
BODY
|
||||
------------------------------------- */
|
||||
table.body-wrap { width: 100%;}
|
||||
|
||||
|
||||
/* -------------------------------------
|
||||
FOOTER
|
||||
------------------------------------- */
|
||||
table.footer-wrap { width: 100%; clear:both!important;
|
||||
}
|
||||
.footer-wrap .container td.content p { border-top: 1px solid rgb(215,215,215); padding-top:15px;}
|
||||
.footer-wrap .container td.content p {
|
||||
font-size:10px;
|
||||
font-weight: bold;
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* -------------------------------------
|
||||
TYPOGRAPHY
|
||||
------------------------------------- */
|
||||
h1,h2,h3,h4,h5,h6 {
|
||||
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; line-height: 1.1; margin-bottom:15px; color:#000;
|
||||
}
|
||||
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small { font-size: 60%; color: #6f6f6f; line-height: 0; text-transform: none; }
|
||||
|
||||
h1 { font-weight:200; font-size: 44px;}
|
||||
h2 { font-weight:200; font-size: 37px;}
|
||||
h3 { font-weight:500; font-size: 27px;}
|
||||
h4 { font-weight:500; font-size: 23px;}
|
||||
h5 { font-weight:900; font-size: 17px;}
|
||||
h6 { font-weight:900; font-size: 14px; text-transform: uppercase; color:#444;}
|
||||
|
||||
.collapse { margin:0!important;}
|
||||
|
||||
p, ul {
|
||||
margin-bottom: 10px;
|
||||
font-weight: normal;
|
||||
font-size:12px;
|
||||
line-height:1.6;
|
||||
}
|
||||
p.lead { font-size:17px; }
|
||||
p.last { margin-bottom:0px;}
|
||||
|
||||
ul li {
|
||||
margin-left:5px;
|
||||
list-style-position: inside;
|
||||
}
|
||||
|
||||
/* -------------------------------------
|
||||
SIDEBAR
|
||||
------------------------------------- */
|
||||
ul.sidebar {
|
||||
background:#ebebeb;
|
||||
display:block;
|
||||
list-style-type: none;
|
||||
}
|
||||
ul.sidebar li { display: block; margin:0;}
|
||||
ul.sidebar li a {
|
||||
text-decoration:none;
|
||||
color: #666;
|
||||
padding:10px 16px;
|
||||
/* font-weight:bold; */
|
||||
margin-right:10px;
|
||||
/* text-align:center; */
|
||||
cursor:pointer;
|
||||
border-bottom: 1px solid #777777;
|
||||
border-top: 1px solid #FFFFFF;
|
||||
display:block;
|
||||
margin:0;
|
||||
}
|
||||
ul.sidebar li a.last { border-bottom-width:0px;}
|
||||
ul.sidebar li a h1,ul.sidebar li a h2,ul.sidebar li a h3,ul.sidebar li a h4,ul.sidebar li a h5,ul.sidebar li a h6,ul.sidebar li a p { margin-bottom:0!important;}
|
||||
|
||||
|
||||
|
||||
/* ---------------------------------------------------
|
||||
RESPONSIVENESS
|
||||
Nuke it from orbit. It's the only way to be sure.
|
||||
------------------------------------------------------ */
|
||||
|
||||
/* Set a max-width, and make it display as block so it will automatically stretch to that width, but will also shrink down on a phone or something */
|
||||
.container {
|
||||
display:block!important;
|
||||
max-width:600px!important;
|
||||
margin:0 auto!important; /* makes it centered */
|
||||
clear:both!important;
|
||||
}
|
||||
|
||||
/* This should also be a block element, so that it will fill 100% of the .container */
|
||||
.content {
|
||||
padding:15px;
|
||||
max-width:600px;
|
||||
margin:0 auto;
|
||||
display:block;
|
||||
}
|
||||
|
||||
/* Let's make sure tables in the content area are 100% wide */
|
||||
.content table { width: 100%; }
|
||||
|
||||
|
||||
/* Odds and ends */
|
||||
.column {
|
||||
width: 300px;
|
||||
float:left;
|
||||
}
|
||||
.column tr td { padding: 15px; }
|
||||
.column-wrap {
|
||||
padding:0!important;
|
||||
margin:0 auto;
|
||||
max-width:600px!important;
|
||||
}
|
||||
.column table { width:100%;}
|
||||
.social .column {
|
||||
width: 280px;
|
||||
min-width: 279px;
|
||||
float:left;
|
||||
}
|
||||
|
||||
/* Be sure to place a .clear element after each set of columns, just to be safe */
|
||||
.clear { display: block; clear: both; }
|
||||
|
||||
|
||||
/* -------------------------------------------
|
||||
PHONE
|
||||
For clients that support media queries.
|
||||
Nothing fancy.
|
||||
-------------------------------------------- */
|
||||
@media only screen and (max-width: 600px) {
|
||||
|
||||
a[class="btn"] { display:block!important; margin-bottom:10px!important; background-image:none!important; margin-right:0!important;}
|
||||
|
||||
div[class="column"] { width: auto!important; float:none!important;}
|
||||
|
||||
table.social div[class="column"] {
|
||||
width:auto!important;
|
||||
}
|
||||
|
||||
}
|
||||
{/literal}
|
||||
</style>
|
||||
|
||||
</head>
|
||||
|
||||
<body bgcolor="#FFFFFF" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;-webkit-font-smoothing: antialiased;-webkit-text-size-adjust: none;height: 100%;width: 100%!important;">
|
||||
|
||||
<!-- HEADER -->
|
||||
<table class="head-wrap" bgcolor="#{$bg_header_color}" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;width: 100%;">
|
||||
<tr style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;"></td>
|
||||
<td class="header container" style="margin: 0 auto!important;padding: 0;font-family: Arial, sans-serif;font-size: 12px;display: block!important;max-width: 600px!important;clear: both!important;">
|
||||
|
||||
<div class="content" style="margin: 0 auto;padding: 15px;font-family: Arial, sans-serif;font-size: 12px;max-width: 600px;display: block;">
|
||||
<table bgcolor="#{$bg_header_color}" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;width: 100%;">
|
||||
<tr style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">{if $logo!=""}<img src="http://{$host}/uploads{$logo}?version=1" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;max-width: 100%; max-height: 50px;">{/if}</td>
|
||||
<td align="right" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;"><h6 class="collapse" style="margin: 0!important;padding: 0;font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;font-size: 14px;line-height: 1.1;margin-bottom: 15px;color: #444;font-weight: 900;text-transform: uppercase;">{$user_created_at}</h6></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
</td>
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;"></td>
|
||||
</tr>
|
||||
</table><!-- /HEADER -->
|
||||
|
||||
|
||||
<!-- BODY -->
|
||||
<table class="body-wrap" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;width: 100%;">
|
||||
<tr style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;"></td>
|
||||
<td class="container" bgcolor="#FFFFFF" style="margin: 0 auto!important;padding: 0;font-family: Arial, sans-serif;font-size: 12px;display: block!important;max-width: 600px!important;clear: both!important;">
|
||||
|
||||
<div class="content" style="margin: 0 auto;padding: 15px;font-family: Arial, sans-serif;font-size: 12px;max-width: 600px;display: block;">
|
||||
<table style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;width: 100%;">
|
||||
<tr style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<p style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;margin-bottom: 10px;font-weight: normal;line-height: 1.6;">{$user_head}</p>
|
||||
<h4 style="margin: 0;padding: 0;font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;font-size: 23px;line-height: 1.1;margin-bottom: 15px;color: #000;font-weight: 500;">{__ text="Prośba o potwierdzenie konta."}</h4>
|
||||
|
||||
|
||||
<p style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;margin-bottom: 10px;font-weight: normal;line-height: 1.6;">
|
||||
{__ text="Twoje konto wymaga potwierdzenia. Skorzystaj z linku poniżej aby potwierdzić dane."}<br style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
{__ text="Login"}: <b style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">{$user_name}</b>
|
||||
</p>
|
||||
<!-- Callout Panel -->
|
||||
<p class="callout" style="text-align: center;margin: 0;padding: 15px;font-family: Arial, sans-serif;font-size: 12px;margin-bottom: 15px;font-weight: normal;line-height: 1.6;background-color: #{$bg_action_color};">
|
||||
<a href="{$user_submit}" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;color: #{$bg_action_link_color};font-weight: bold;">{__ text="Potwierdź konto"}</a>
|
||||
</p><!-- /Callout Panel -->
|
||||
|
||||
<!-- social & contact -->
|
||||
<table class="social" width="100%" style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;background-color: #{$bg_footer_color};width: 100%;">
|
||||
<tr style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;">{$user_foot}</td>
|
||||
</tr>
|
||||
</table><!-- /social & contact -->
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><!-- /content -->
|
||||
|
||||
</td>
|
||||
<td style="margin: 0;padding: 0;font-family: Arial, sans-serif;font-size: 12px;"></td>
|
||||
</tr>
|
||||
</table><!-- /BODY -->
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,9 @@
|
||||
{$user_head}
|
||||
|
||||
{__ text="Twoje konto w sklepie zostało założone."}
|
||||
{__ text="Twój login"}: {$user_name}
|
||||
{__ text="Twoje hasło"}: {$user_password}
|
||||
{__ text="Data założenia konta"}: {$user_created_at}
|
||||
{$user_submit}
|
||||
|
||||
{$user_foot}
|
||||
@@ -0,0 +1,6 @@
|
||||
<div id="privacy_webpage" class="tinymce_html" style="margin: 10px;">
|
||||
<div class="st_title">
|
||||
<h2>{$webpage->getName()}</h2>
|
||||
</div>
|
||||
{$webpage->getContent()}
|
||||
</div>
|
||||
@@ -0,0 +1,6 @@
|
||||
<div id="right_2_cancel_webpage" class="tinymce_html" style="margin: 10px;">
|
||||
<div class="st_title">
|
||||
<h2>{$webpage->getName()}</h2>
|
||||
</div>
|
||||
{$webpage->getContent()}
|
||||
</div>
|
||||
@@ -0,0 +1,50 @@
|
||||
{set layout="one_column_layout"}
|
||||
<div id="st_application-user-account" class="box roundies">
|
||||
<div class="title">
|
||||
<h2>{__ text="Rejestracja"}</h2>
|
||||
<p>
|
||||
{__ text="Prośba o potwierdzenie konta."}
|
||||
</p>
|
||||
</div>
|
||||
<div class="st_content">
|
||||
|
||||
<div id="user_wait_confirm" class="box_form roundies">
|
||||
|
||||
<div style="padding:25px;">
|
||||
<p>
|
||||
{__ text="Dziękujemy za dokonanie rejestracji. Proszę sprawdzić pocztę, na adres:"}
|
||||
</p>
|
||||
<p>
|
||||
<b>{$username}</b>
|
||||
</p>
|
||||
<p>
|
||||
{__ text="została wysłana prośba o potwierdzenie konta."}
|
||||
</p>
|
||||
|
||||
<div id="st_application-user-account-buttons">
|
||||
|
||||
{if $show_basket != 0}
|
||||
|
||||
<div class="buttons left">
|
||||
<a href="/" class="regular roundies"> <span class="arrow_left icon_left">{__ text="Wróć do zakupów"}</span> </a>
|
||||
</div>
|
||||
|
||||
<div class="buttons right">
|
||||
<a href="{$go_to_basket_url}" class="regular roundies"> <span class="arrow_right">{__ text="Przejdź do koszyka"}</span> </a>
|
||||
</div>
|
||||
{else}
|
||||
<div class="buttons left" style="margin-left: 84px;">
|
||||
<a href="/" class="regular roundies"> <span class="arrow_left icon_left">{__ text="Wróć do zakupów"}</span> </a>
|
||||
</div>
|
||||
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
@@ -0,0 +1,50 @@
|
||||
{set layout="one_column_layout"}
|
||||
<div id="st_application-user-account" class="box roundies">
|
||||
<div class="title">
|
||||
<h2>{__ text="Rejestracja"}</h2>
|
||||
<p>
|
||||
{__ text="Prośba o potwierdzenie konta."}
|
||||
</p>
|
||||
</div>
|
||||
<div class="st_content">
|
||||
|
||||
<div id="user_wait_confirm" class="box_form roundies">
|
||||
|
||||
<div style="padding:25px;">
|
||||
<p>
|
||||
{__ text="Proszę sprawdzić pocztę, na adres"}:
|
||||
</p>
|
||||
<p>
|
||||
<b>{$username}</b>
|
||||
</p>
|
||||
<p>
|
||||
{__ text="została wysłana prośba o potwierdzenie konta."}
|
||||
</p>
|
||||
|
||||
<div id="st_application-user-account-buttons">
|
||||
|
||||
{if $show_basket != 0}
|
||||
|
||||
<div class="buttons left">
|
||||
<a href="/" class="regular roundies"> <span class="arrow_left icon_left">{__ text="Wróć do zakupów"}</span> </a>
|
||||
</div>
|
||||
|
||||
<div class="buttons right">
|
||||
<a href="{$go_to_basket_url}" class="regular roundies"> <span class="arrow_right">{__ text="Przejdź do koszyka"}</span> </a>
|
||||
</div>
|
||||
{else}
|
||||
<div class="buttons left" style="margin-left: 84px;">
|
||||
<a href="/" class="regular roundies"> <span class="arrow_left icon_left">{__ text="Wróć do zakupów"}</span> </a>
|
||||
</div>
|
||||
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user