Files
mlmmj-light-web-ecg/misc/smarty/templates_en/error.tpl

53 lines
2.1 KiB
Smarty

<html>
<head>
<title>Error | {$headline}</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="header">
<div id="header_left">
<a href="{$web_url}">{$headline}</a>
</div>
<div id="header_right">
<a href="logout.php">Logout ({$username})</a>
</div>
</div>
<div id="error">
<strong>
{if $error_code == 1}
Domain can contain only english letters, dots, hyphens and digits.
{elseif $error_code == 2}
Password can contain only english letters and digits.
{elseif $error_code == 3}
Incorrect password.
{elseif $error_code == 4}
There is no such domain.
{elseif $error_code == 5}
Mailing list name can contain only english letters, digits and undercores.
{elseif $error_code == 6}
The length of a list name can not exceed 30 characters.
{elseif $error_code == 7}
The length of a prefix can not exceed 128 characters.
{elseif $error_code == 8}
The length of a footer can not exceed 1024 characters.
{elseif $error_code == 9}
There is an incorrect email in the subscribers list.
{elseif $error_code == 10}
There is an incorrect email in the moderators list.
{elseif $error_code == 11}
You do not own this list.
{elseif $error_code == 12}
The list does not exist within the mlmmj working folder.
{elseif $error_code == 13}
The list name exceeds the maximum length of 50 chars.
{elseif $error_code == 14}
The list name contains chars which are not allowed.
{else}
Unknown error.
{/if}
</strong>
<p>Hit "Back" in your browser to return to where you came from. This should normally preserve your changes.</p>
</div>
</body>
</html>