remove unnecessary form action attributes

This commit is contained in:
David Lord 2016-06-22 15:01:41 -07:00
parent d8c39f4b37
commit cd1a9b7d54
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) }}