32 lines
846 B
Smarty
Executable File
32 lines
846 B
Smarty
Executable File
<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;
|
|
}
|
|
@media screen and (max-width:767px){
|
|
body#authentication {
|
|
background-image: none !important;
|
|
}
|
|
}
|
|
{else}
|
|
body#authentication {
|
|
background-image: url("{$base_dir_ssl}modules/landingpages/img/default.jpg");
|
|
background-position: center 99px;
|
|
background-repeat: no-repeat;
|
|
}
|
|
@media screen and (max-width:767px){
|
|
body#authentication {
|
|
background-image: none !important;
|
|
}
|
|
}
|
|
{/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>
|