remove unnecessary form action attributes

This commit is contained in:
David Lord 2016-06-22 15:01:41 -07:00
parent e924bd3458
commit 77cfb9b226
4 changed files with 7 additions and 7 deletions

View file

@ -108,7 +108,7 @@ takes advantage of the :file:`_formhelpers.html` template:
.. sourcecode:: html+jinja
{% from "_formhelpers.html" import render_field %}
<form method=post action="/register">
<form method=post>
<dl>
{{ render_field(form.username) }}
{{ render_field(form.email) }}