Browse Source

Change submite button style from default to primary

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

2
app/templates/login.html

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

2
app/templates/register.html

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