22 lines
632 B
Smarty
22 lines
632 B
Smarty
|
<style type="text/css">
|
||
|
{if $landing}
|
||
|
body#authentication {
|
||
|
background-image: url("{$base_dir_ssl}modules/landingpages/img/{$id_lp}_1_{$cookie->id_lang}.jpg") !important;
|
||
|
background-position: center 99px;
|
||
|
background-repeat: no-repeat;
|
||
|
}
|
||
|
{else}
|
||
|
body#authentication {
|
||
|
background-image: url("{$base_dir_ssl}modules/landingpages/img/default.jpg");
|
||
|
background-position: center 99px;
|
||
|
background-repeat: no-repeat;
|
||
|
}
|
||
|
{/if}
|
||
|
</style>
|
||
|
<div class="hidden" style="display: none !important;">
|
||
|
<input type="hidden" name="lp" value="{$smarty.request.lp|escape:'htmlall':'UTF-8'}" />
|
||
|
{if isset($tag)}
|
||
|
{$tag}
|
||
|
{/if}
|
||
|
</div>
|