Browse Source

fix double parenthesis

feature_tests
Burathar 4 years ago
parent
commit
c170b2d276
  1. 2
      app/templates/login.html
  2. 2
      app/templates/register.html

2
app/templates/login.html

@ -5,7 +5,7 @@ @@ -5,7 +5,7 @@
<h1>Sign In</h1>
<div class="row">
<div class="col-md-4">
{{ wtf.quick_form(form, button_map={'submit': 'primary'})) }}
{{ wtf.quick_form(form, button_map={'submit': 'primary'}) }}
</div>
</div>
<br>

2
app/templates/register.html

@ -5,7 +5,7 @@ @@ -5,7 +5,7 @@
<h1>Register</h1>
<div class="row">
<div class="col-md-4">
{{ wtf.quick_form(form, button_map={'submit': 'primary'})) }}
{{ wtf.quick_form(form, button_map={'submit': 'primary'}) }}
</div>
</div>
{% endblock %}
Loading…
Cancel
Save