37 lines
1.1 KiB
Smarty
37 lines
1.1 KiB
Smarty
{if $connect_button == 1}
|
|
<style type="text/css">
|
|
#authentication #center_column #account-creation_container p#account_form_bottom{
|
|
padding: 0px;
|
|
width: inherit;
|
|
text-align: right;
|
|
margin-top: 10px;
|
|
}
|
|
#authentication #center_column #account-creation_container p#account_form_bottom a#SubmitLogin{
|
|
height: 40px;
|
|
padding: 0px 15px 0px 15px;
|
|
text-decoration: none;
|
|
color: #fff;
|
|
border: 0px none;
|
|
position: relative;
|
|
right: 0px;
|
|
border-radius: 0px !important;
|
|
background: #565485;
|
|
}
|
|
</style>
|
|
<script>
|
|
$(document).ready(function() {
|
|
if ($('#submitAccount').outerWidth() > $('a#SubmitLogin').outerWidth()) {
|
|
$('a#SubmitLogin').css({
|
|
width: $('#submitAccount').outerWidth()+'px'
|
|
});
|
|
} else {
|
|
$('#submitAccount').css({
|
|
width: $('a#SubmitLogin').outerWidth()+'px'
|
|
});
|
|
}
|
|
});
|
|
</script>
|
|
<p class="cart_navigation" id="account_form_bottom">
|
|
<a id="SubmitLogin" href="{$link->getPageLink('authentication.php')}">{l s='Already member' mod='landingpages'}</a>
|
|
</p>
|
|
{/if} |