{% load i18n %} <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="{{ LANGUAGE_USED }}" xml:lang="{{ LANGUAGE_USED }}"> <head> <title>{% trans "Confirm Your Identity" %}</title> <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}mail/main.css" /> </head> <body> <div id="w"> <div id="h"> <a href="http://www.curse-gaming.com/" title="Curse Home"><img class="l" src="{{ STATIC_URL }}mail/logo.png" alt="logo" /></a> <h1>{% trans "Confirm Your Identity" %}</h1> </div> <div class="bl"> <h2>Are you human?</h2> <form method="post" action="."> {% for field in post_data %} {% ifnotequal field.0 "captcha" %}<input type="hidden" name="{{ field.0|escape }}" value="{{ field.1|escape }}" />{% endifnotequal %} {% endfor %} <p><img src="/captcha/{{ random_num }}/?a=1" alt="Captcha Test" style="border: 2px solid #aaaaaa !important;"></p> <p>Please enter the text you see above. {% if error %}<strong style="color: red;">{{ error|join:", "|escape }}</strong>{% endif %}</p> <p> <label for="id_captcha">Text:</label><input type="text" class="vTextField" style="width: 280px;" id="id_captcha" name="captcha" value="{{ form.data.captcha|escape }}" /> <input type="submit" class="button" value="Confirm" /> </p> </form> <h2>Why is this page needed?</h2> <p> Due to continuous use of our website through spam bots, spiders, and similar software, we now "test" all users at specified intervals to verify if they are human. </p> <p> If you don't wish to see this in the future please login and visit your <a href="/accounts/">account settings</a> to <strong>verify your account</strong>. </p> </div> </div> </body> </html>