blob: 2c96d99db04b190d6f83d0093aa1d635643165c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
<?php echo '<?xml version="1.0" encoding="UTF-8"?>'; ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.0//EN" "http://www.w3.org/TR/xhtml-basic/xhtml-basic10.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
<meta name="author" content="Johannes Lehtinen"/>
<meta name="copyright" content="Copyright 2007 Johannes Lehtinen"/>
<title>Invalid e-mail address</title>
<link rel="Stylesheet" type="text/css" href="../cpluff_style.css"/>
</head>
<body>
<div id="content">
<h1>Invalid e-mail address</h1>
<p>
The e-mail address you specified,
<?php echo htmlspecialchars($_REQUEST['address']); ?>,
is invalid. Please check that you specified
a correct address and try again. If you have any problems
with C-Pluff mailing lists, you may contact the mailing list
administrator at
<a href="mailto:listmaster@c-pluff.org">listmaster@c-pluff.org</a>.
</p>
<p>
Return to
<a href="../lists.en">the C-Pluff mailing list page</a>.
</p>
<p class="footer">
Copyright 2007 <a href="http://www.jlehtinen.net/">Johannes Lehtinen</a><br/>
Validation:
<a href="http://validator.w3.org/check?uri=referer">XHTML Basic 1.0</a>,
<a href="http://jigsaw.w3.org/css-validator/check/referer">CSS 2</a>
</p>
</div>
</body>
</html>
|