| 1 |
<div class="hostinger hsr-banner-container"> |
| 2 |
<div class="hsr-promotional-banner"> |
| 3 |
<div class="hsr-promotional-banner-content"> |
| 4 |
<div> |
| 5 |
<div class="hsr-onboarding__title"><?php echo esc_html__( 'Invite a Friend, Earn Up to $100', 'hostinger' ); ?></div> |
| 6 |
<p class="hsr-promotional-banner-description"> |
| 7 |
<?php |
| 8 |
echo wp_kses( |
| 9 |
__( |
| 10 |
'Share your referral link with friends and family and <b>receive 20% commission</b> for every successful referral.', |
| 11 |
'hostinger' |
| 12 |
), |
| 13 |
array( |
| 14 |
'b' => array(), // Allowing only <b> tags |
| 15 |
) |
| 16 |
); |
| 17 |
?> |
| 18 |
</p> |
| 19 |
</div> |
| 20 |
<div class="hsr-buttons"> |
| 21 |
<a class="hsr-btn hsr-purple-btn" |
| 22 |
href="<?php echo esc_url( $helper->get_promotional_link_url( get_locale() ) ); ?>" |
| 23 |
target="_blank" |
| 24 |
rel="noopener noreferrer"><?php echo esc_html__( 'Start earning', 'hostinger' ); ?></a> |
| 25 |
<svg class="close-btn" |
| 26 |
width="25" |
| 27 |
height="24" |
| 28 |
viewBox="0 0 25 24" |
| 29 |
fill="none" |
| 30 |
xmlns="http://www.w3.org/2000/svg"> |
| 31 |
<path fill-rule="evenodd" |
| 32 |
clip-rule="evenodd" |
| 33 |
d="M19.5 6.41L18.09 5L12.5 10.59L6.91 5L5.5 6.41L11.09 12L5.5 17.59L6.91 19L12.5 13.41L18.09 19L19.5 17.59L13.91 12L19.5 6.41Z" |
| 34 |
fill="#2F1C6A"/> |
| 35 |
</svg> |
| 36 |
</div> |
| 37 |
</div> |
| 38 |
</div> |
| 39 |
</div> |
| 40 |
|