Skip to content

Commit

Permalink
Remove unnecessary form element
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocobo1 committed Aug 22, 2024
1 parent 0426acf commit b57b934
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 19 deletions.
5 changes: 1 addition & 4 deletions .htmlvalidate.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
{
"extends": [
"html-validate:recommended"
],
"rules": {
"wcag/h32": "off"
}
]
}
26 changes: 11 additions & 15 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,23 +28,19 @@
</nav>

<div class="container">
<form>
<div>
<label>
Bencoded structure represented in JSON format:
</label>
<div id="jsonEditor"></div> <!--class="form-control"-->
</div>
<div>
<label for="jsonEditor">Bencoded structure represented in JSON format:</label>
<div id="jsonEditor"></div> <!--class="form-control"-->
</div>

<div class="row">
<div class="btn-group" role="group" aria-label="buttons group">
<button type="button" class="btn btn-primary" id="openfileButton">Open file...</button>
<button type="button" class="btn btn-primary" id="shareButton">Copy share link</button>
<button type="button" class="btn btn-primary" id="saveButton">Save (bencode it)</button>
<input type="file" id="fileInput" hidden>
</div>
<div class="row">
<div class="btn-group" role="group" aria-label="buttons group">
<button type="button" class="btn btn-primary" id="openfileButton">Open file...</button>
<button type="button" class="btn btn-primary" id="shareButton">Copy share link</button>
<button type="button" class="btn btn-primary" id="saveButton">Save (bencode it)</button>
<input type="file" id="fileInput" hidden>
</div>
</form>
</div>

<br>

Expand Down

0 comments on commit b57b934

Please sign in to comment.