summaryrefslogtreecommitdiffstats
path: root/templates/packages/flag.html
diff options
context:
space:
mode:
authoreliott <eliott@cactuswax.net>2007-11-03 08:45:10 +0100
committereliott <eliott@cactuswax.net>2007-11-03 08:45:10 +0100
commit39a548fd2629f3b6383990264b2e331b3aea99fb (patch)
treef68c3156dad5f7814473ceff2461679ddf11a2e8 /templates/packages/flag.html
downloadarchweb-39a548fd2629f3b6383990264b2e331b3aea99fb.tar.gz
archweb-39a548fd2629f3b6383990264b2e331b3aea99fb.tar.xz
Initial import for public release...
Special Note Prior to git import, approx 90% of the code was done by Judd Vinet. Thanks Judd!
Diffstat (limited to 'templates/packages/flag.html')
-rw-r--r--templates/packages/flag.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/templates/packages/flag.html b/templates/packages/flag.html
new file mode 100644
index 0000000..215b6fa
--- /dev/null
+++ b/templates/packages/flag.html
@@ -0,0 +1,26 @@
+{% load validation %}
+<html>
+<head><title>Flagging Packages</title></head>
+<body>
+{% if errors %}
+ {% print_errors errors %}
+{% endif %}
+<span style="font-family: verdana, arial, helvetica">
+{% if confirmemail %}
+ Thank you. Maintainers have been notified.
+{% else %}
+<form method="post" action=".">
+ Please confirm your flag request.<br />
+ <br />
+ Email Address: (required) <br />
+ <input type="text" name="confirmemail" size="40" maxlength="128" /><br />
+ <br />
+ Message to dev: (optional)<br />
+ <textarea name="usermessage" rows="3" cols="40"></textarea><br />
+ <input type="submit" value=" Confirm " />
+</form>
+{% endif %}
+</span>
+</body>
+</html>
+