evorepo/templates/general_form.html
Dan McGee b3059dd3e8 Remove action when submitting to same URL
It looks like the `action="."` business was screwing up some browsers,
notably lynx and links. We don't need it as the default is to submit to the
same page anyway, so kill this gunk and see if it fixes a login CSRF issue.

Signed-off-by: Dan McGee <dan@archlinux.org>
2010-06-11 17:29:46 -05:00

24 lines
771 B
HTML

{% extends "base.html" %}
{% block title %}Arch Linux - {{title}}{% endblock %}
{% block content %}
<div id="generic-form" class="box">
<h2>{{title}}</h2>
{% if description %}{{description}}{% endif %}
<form class="general-form" method="post">{% csrf_token %}
<fieldset>
{% for field in form %}
<p><label>{{field.label}}{% if field.help_text %}:</label><br />
<span class="form-help">{{field.help_text}}</span> {% else %}:</label> {% endif %}
{{field}} {% if field.required %}<span class="form-req-field">*</span>{% endif%}</p>
{% endfor %}
</fieldset>
<p><label></label> <input type="submit" value="{{submit_text}}" /></p>
</form>
</div>
{% endblock %}