Changeset - 3eac05cabbc2
[Not reviewed]
i18n
0 1 0
Dennis Fink - 3 years ago 2022-01-17 10:39:54
dennis.fink@c3l.lu
Fix form submission
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
c3l_membership/templates/index.html
Show inline comments
 
@@ -44,13 +44,13 @@
 
          {% for fieldname, errors in form.errors.items() %}
 
            {% for error in errors %}
 
              <p>{{ fieldname }} - {{ error }}</p>
 
            {% endfor %}
 
          {% endfor %}
 
        {% endif %}
 
        <form class="pure-form pure-form-stacked" method="POST" action="/">
 
        <form class="pure-form pure-form-stacked" method="POST" action="{{ url_for('root.index', lang_code=g.lang_code) }}">
 
          <fieldset>
 
            {{ form.hidden_tag() }}
 
            <legend>{% trans %}Required information{% endtrans %}</legend>
 
            <div class="pure-g">
 
              <div class="pure-u-1-1">
 
                <b>{{ form.username.label }}</b>
0 comments (0 inline, 0 general)