Remove invalid id='submit' on submit buttons and correctly set tabindex to 0 (#1080)

* Remove invalid id='submit' on submit buttons
* Set `tabindex` to 0 since we don't really care for forcing tab order.
This commit is contained in:
Kevin Chung
2019-08-08 18:27:44 -04:00
committed by GitHub
parent 71240bb13d
commit 5c4f1d78fa
10 changed files with 10 additions and 10 deletions

View File

@@ -80,7 +80,7 @@
<input id="challenge-id" type="hidden" value="{{ id }}">
</div>
<div class="col-md-3 form-group key-submit">
<button type="submit" id="submit-key" tabindex="5"
<button type="submit" id="submit-key" tabindex="0"
class="btn btn-md btn-outline-secondary float-right">Submit
</button>
</div>