summaryrefslogtreecommitdiff
path: root/website/list
diff options
context:
space:
mode:
authorHenri Herscher <henri@oreka.org>2005-10-27 15:08:39 +0000
committerHenri Herscher <henri@oreka.org>2005-10-27 15:08:39 +0000
commite76fa0b3e203a5eeebc15eed92be79933bd94457 (patch)
tree6b007edae582fb67b69393c35544ed8bd96274ec /website/list
parent0fd6bacf4e3cf06208d3d0327672d9446094e0a6 (diff)
First checkin
git-svn-id: https://oreka.svn.sourceforge.net/svnroot/oreka/trunk@18 09dcff7a-b715-0410-9601-b79a96267cd0
Diffstat (limited to 'website/list')
-rw-r--r--website/list/alreadyon.php16
-rw-r--r--website/list/emailconfirm.php18
-rw-r--r--website/list/invalid.php16
-rw-r--r--website/list/main.inc.php34
-rw-r--r--website/list/noton.php14
-rw-r--r--website/list/subscribed.php30
-rw-r--r--website/list/unsubscribed.php14
7 files changed, 142 insertions, 0 deletions
diff --git a/website/list/alreadyon.php b/website/list/alreadyon.php
new file mode 100644
index 0000000..e2b7434
--- /dev/null
+++ b/website/list/alreadyon.php
@@ -0,0 +1,16 @@
+<?php
+ include 'main.inc.php';
+ Top("Already On Our Mailing List");
+?>
+
+<p>
+The email address you entered is already on our mailing list!
+</p>
+
+<p>
+<a href="http://audacity.sourceforge.net/">Click here to return to the Audacity home page</a>
+</p>
+
+<?php
+ Bottom();
+?>
diff --git a/website/list/emailconfirm.php b/website/list/emailconfirm.php
new file mode 100644
index 0000000..0ab129f
--- /dev/null
+++ b/website/list/emailconfirm.php
@@ -0,0 +1,18 @@
+<?php
+ include 'main.inc.php';
+ Top("Thank You");
+?>
+
+<p>
+Thank you for signing up for our announcement list. You will be
+receiving a confirmation email shortly. You must respond to this
+email in order to be subscribed.
+</p>
+
+<p>
+<a href="http://audacity.sourceforge.net/">Click here to return to the Audacity home page</a>
+</p>
+
+<?php
+ Bottom();
+?>
diff --git a/website/list/invalid.php b/website/list/invalid.php
new file mode 100644
index 0000000..3c97fc4
--- /dev/null
+++ b/website/list/invalid.php
@@ -0,0 +1,16 @@
+<?php
+ include 'main.inc.php';
+ Top("Invalid");
+?>
+
+<p>
+The email address you entered was invalid.
+</p>
+
+<p>
+<a href="http://audacity.sourceforge.net/">Click here to return to the Audacity home page</a>
+</p>
+
+<?php
+ Bottom();
+?>
diff --git a/website/list/main.inc.php b/website/list/main.inc.php
new file mode 100644
index 0000000..24de430
--- /dev/null
+++ b/website/list/main.inc.php
@@ -0,0 +1,34 @@
+<?php
+
+$charset = "iso-8859-1";
+
+function Top($title)
+{
+ header("Content-type: text/html; charset=$charset");
+
+ print "<html><head><title>$title</title></head>\n";
+
+ print "<body bgcolor=\"#ffffff\">\n";
+
+ print "<center>\n";
+ print "<a href=\"http://oreka.sourceforge.net\">\n";
+ print "<img src=../images/oreka.jpg width=253 height=100 border=0>\n";
+ print "</a>\n";
+
+ print '<table border="0" cellpadding="1" cellspacing="0" bgcolor="#000099" width="80%"><tr><td>';
+ print '<table border="0" cellspacing="1" cellpadding="4" width="100%">';
+ print '<tr><td align="center" bgcolor="#dddddd">';
+ print '<font size="+1"><b>';
+ print $title;
+ print '<b></font>';
+ print '</td></tr>';
+ print '<tr><td align="left" bgcolor="#ffffff">';
+}
+
+function Bottom()
+{
+ print '</td></tr></table></td></tr></table></center>';
+ print '</body></html>';
+}
+
+?>
diff --git a/website/list/noton.php b/website/list/noton.php
new file mode 100644
index 0000000..becd048
--- /dev/null
+++ b/website/list/noton.php
@@ -0,0 +1,14 @@
+<?php
+ include 'main.inc.php';
+ Top("Not on our list...");
+?>
+
+<p>
+Sorry, the email address you entered is not on our mailing list.
+</p>
+
+<p>
+<a href="http://audacity.sourceforge.net/">Click here to return to the Audacity home page</a>
+</p>
+
+<?php Bottom(); ?>
diff --git a/website/list/subscribed.php b/website/list/subscribed.php
new file mode 100644
index 0000000..a4f10f0
--- /dev/null
+++ b/website/list/subscribed.php
@@ -0,0 +1,30 @@
+<?php
+ include 'main.inc.php';
+ Top("Subscribed!");
+?>
+
+<p>
+Your email address has been confirmed, and you are now on the
+Audacity-Announce mailing list!
+</p>
+
+<p>
+The Audacity developers take your privacy very seriously. We will
+only send you short emails when we release new versions of Audacity or
+have other important news - typically about one email per month.
+We will never sell or share your email address with anyone else.
+</p>
+
+<p>
+It's easy to remove your email address from our list:
+just type it in the box on the left side of the Audacity home page,
+and click "Remove".
+</p>
+
+<p>
+<a href="http://audacity.sourceforge.net/">Click here to return to the Audacity home page</a>
+</p>
+
+<?php
+ Bottom();
+?>
diff --git a/website/list/unsubscribed.php b/website/list/unsubscribed.php
new file mode 100644
index 0000000..e8b224e
--- /dev/null
+++ b/website/list/unsubscribed.php
@@ -0,0 +1,14 @@
+<?php
+ include 'main.inc.php';
+ Top("Unsubscribed!");
+?>
+
+<p>
+You have been unsubscribed from our mailing list.
+</p>
+
+<p>
+<a href="http://audacity.sourceforge.net/">Click here to return to the Audacity home page</a>
+</p>
+
+<?php Bottom(); ?>