summaryrefslogtreecommitdiffstats
path: root/templates/packages/flag.html
blob: 215b6fa8ab29dac7e8113f4bbc284466f3858e2a (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
{% 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>