form
9 years ago
newsletter
9 years ago
settings
9 years ago
subscribers
9 years ago
forms.html
9 years ago
index.html
9 years ago
index.php
9 years ago
layout.html
9 years ago
limit.html
9 years ago
newsletters.html
9 years ago
segments.html
9 years ago
settings.html
9 years ago
update.html
9 years ago
welcome.html
9 years ago
limit.html
28 lines
| 1 | <% extends 'layout.html' %> |
| 2 | |
| 3 | <% block content %> |
| 4 | |
| 5 | <div class="wrap about-wrap"> |
| 6 | <h1><%= __("You've reached the %d subscribers limit!") | format(limit) %></h1> |
| 7 | |
| 8 | <p class="about-text"> |
| 9 | <%= __("MailPoet 3 is currently limited to %d subscribers.") | format(limit) %> |
| 10 | </p> |
| 11 | |
| 12 | <img |
| 13 | src="http://i2.wp.com/www.mailpoet.com/wp-content/uploads/2015/05/sad-cat.gif?resize=500%2C212" |
| 14 | alt="sad-cat" |
| 15 | width="500" |
| 16 | height="212" |
| 17 | /> |
| 18 | |
| 19 | <h3><%= __('Immediately, you can:') %></h3> |
| 20 | <ul> |
| 21 | <li><%= __('Delete unconfirmed subscribers to have less than %d subscribers.') | format(limit) %></li> |
| 22 | <li> |
| 23 | <a href="http://www.mailpoet.com/support/"><%= __('Contact us')%></a> |
| 24 | <%= __('to become a Premium beta tester.')%> |
| 25 | </li> |
| 26 | </ul> |
| 27 | </div> |
| 28 | <% endblock %> |