deactivationSurvey
7 years ago
form
7 years ago
newsletter
7 years ago
settings
7 years ago
subscribers
7 years ago
blank.html
8 years ago
forms.html
7 years ago
help.html
7 years ago
index.html
8 years ago
index.php
9 years ago
invalidkey.html
8 years ago
layout.html
7 years ago
limit.html
7 years ago
mp2migration.html
7 years ago
newsletters.html
7 years ago
premium.html
7 years ago
segments.html
7 years ago
settings.html
7 years ago
update.html
7 years ago
welcome_wizard.html
7 years ago
limit.html
34 lines
| 1 | <% extends 'layout.html' %> |
| 2 | |
| 3 | <% block content %> |
| 4 | |
| 5 | <div class="wrap mailpoet-about-wrap"> |
| 6 | <h1><%= __("You've reached the %s subscribers limit!") | format(number_format_i18n(limit)) %></h1> |
| 7 | |
| 8 | <p class="about-text"> |
| 9 | <%= __("Our free version is limited to %s subscribers.") | format(number_format_i18n(limit)) %> |
| 10 | </p> |
| 11 | |
| 12 | <img |
| 13 | src="http://i2.wp.com/www.mailpoet.com/wp-content/uploads/2018/09/2000-limit-illustration.png?resize=1050%2C350" |
| 14 | alt="sad-cat" |
| 15 | width="1050" |
| 16 | height="350" |
| 17 | /> |
| 18 | |
| 19 | <h3><%= __('Immediately, you can:') %></h3> |
| 20 | <ul class="ul-disc"> |
| 21 | <li><%= __('Delete unconfirmed subscribers to have less than %s subscribers.') | format(number_format_i18n(limit)) %></li> |
| 22 | <li><%= __('Install the Premium plugin if you have purchased it.') %></li> |
| 23 | <li> |
| 24 | <a |
| 25 | href="<%= admin_url('admin.php?page=mailpoet-premium') %>" |
| 26 | class="button-primary" |
| 27 | > |
| 28 | <%= __('Check out the Premium')%> |
| 29 | </a> |
| 30 | </li> |
| 31 | </ul> |
| 32 | </div> |
| 33 | <% endblock %> |
| 34 |