submit: don't disable submit button by default

this doesn't create an issue because HTML form validation does work here
pull/14/head
justcool393 2022-11-25 13:18:43 -06:00
parent 23505c68b3
commit 37c8d77f3f
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@
</div>
<div class="col text-right">
{% if error %}<span class="text-danger text-large mr-2">{{error | safe}}</span>{% endif %}
<button type="submit" class="btn btn-primary" id="create_button" type="submit" onclick="disable(this)" disabled>Post</button>
<button type="submit" class="btn btn-primary" id="create_button" type="submit" onclick="disable(this)">Post</button>
</div>
</div>
</div>