Skip to content

Commit

Permalink
Fix some malformed html that has bothered me for a while here.
Browse files Browse the repository at this point in the history
`<button>` tags should not be ended with `</a>`.
  • Loading branch information
drgrice1 committed Sep 26, 2021
1 parent fda8d02 commit fb3033e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/layouts/navbar.html.ep
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
<span id="hiddenSourceFilePath"></span>
<input type="text" placeholder="file path..." name="sourceFilePath" id="sourceFilePath">
<input type="text" placeholder="random seed..." name="problemSeed" id="problemSeed" style="width:130px;">
<button type="button" id="save-problem">Save</a>
<button type="button" id="load-problem">Load</a>
<button type="button" id="save-problem">Save</button>
<button type="button" id="load-problem">Load</button>
<!--/form-->
</div>
</div>
Expand Down

0 comments on commit fb3033e

Please sign in to comment.