diff options
author | arf20 <aruizfernandez05@gmail.com> | 2024-04-15 17:45:26 +0200 |
---|---|---|
committer | arf20 <aruizfernandez05@gmail.com> | 2024-04-15 17:45:26 +0200 |
commit | e89e2574c02f8bc893721aeaf705cb57de9489ee (patch) | |
tree | 5ea73446a6246d4896e83dd5410bcf8527851e0e /example.html | |
download | arfnet2-lists-e89e2574c02f8bc893721aeaf705cb57de9489ee.tar.gz arfnet2-lists-e89e2574c02f8bc893721aeaf705cb57de9489ee.zip |
Initial commit
Diffstat (limited to 'example.html')
-rw-r--r-- | example.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/example.html b/example.html new file mode 100644 index 0000000..f969d57 --- /dev/null +++ b/example.html @@ -0,0 +1,33 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN"> +<html> +<head> +<title>mlmmj-webinterface</title> +</head> +<body> + +<p> +<h1>subscribe</h1> +<form action="mlmmj.php" method="post"> +<input name="mailinglist" type="hidden" value="mlmmj-test@domain.tld"> +<input name="job" type="hidden" value="subscribe"> +<input name="redirect_failure" type="hidden" value="http://www.failure.com/"> +<input name="redirect_success" type="hidden" value="http://www.success.com/"> +<input name="email" type="text" size="30" maxlength="254"><br> +<input type="submit" value="Subscribe"> +</form> +</p> + +<p> +<h1>unsubscribe</h1> +<form action="mlmmj.php" method="post"> +<input name="mailinglist" type="hidden" value="mlmmj-test@domain.tld"> +<input name="job" type="hidden" value="unsubscribe"> +<input name="redirect_failure" type="hidden" value="http://www.failure.com/"> +<input name="redirect_success" type="hidden" value="http://www.success.com/"> +<input name="email" type="text" size="30" maxlength="254"><br> +<input type="submit" value="Unsubscribe"> +</form> +</p> + +</body> +</html> |