HTML5-compliance fix

This commit is contained in:
Marcel Peterkau 2022-08-19 12:30:21 +02:00
parent 7c38d02bf8
commit a6f5b4ef65

View File

@ -4,7 +4,6 @@
<head> <head>
<meta charset="utf-8" /> <meta charset="utf-8" />
<title>KTM CAN Chain Oiler</title> <title>KTM CAN Chain Oiler</title>
<meta http-equiv="content-type" content="text/html;charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="static/css/bootstrap.min.css"> <link rel="stylesheet" href="static/css/bootstrap.min.css">
<link rel="stylesheet" href="static/css/custom.css"> <link rel="stylesheet" href="static/css/custom.css">
@ -47,7 +46,7 @@
</div> </div>
</nav> </nav>
<main role="main" class="container"> <main class="container">
<!-- Tabs Content --> <!-- Tabs Content -->
<div class="tab-content"> <div class="tab-content">
@ -76,9 +75,9 @@
<table class="table"> <table class="table">
<tbody> <tbody>
<tr> <tr>
<th class="col-md-4" scope="col">Timestamp</td> <th class="col-md-4" scope="col">Timestamp</th>
<th class="col-md-4" scope="col">DTC</td> <th class="col-md-4" scope="col">DTC</th>
<th class="col-md-4" scope="col">active</td> <th class="col-md-4" scope="col">active</th>
</tr> </tr>
%DTC_TABLE% %DTC_TABLE%
</tbody> </tbody>
@ -454,7 +453,6 @@
<h3>Firmware Update</h3> <h3>Firmware Update</h3>
<hr> <hr>
<h4>Version-Info</h4> <h4>Version-Info</h4>
<p>
<table class="table"> <table class="table">
<tbody> <tbody>
<tr> <tr>
@ -466,10 +464,9 @@
<td>%FS_VERSION%</td> <td>%FS_VERSION%</td>
</tr> </tr>
</table> </table>
</p>
<hr> <hr>
<h4>Firmware-Update</h4> <h4>Firmware-Update</h4>
<p>
<form method='POST' action='/doUpdate' enctype='multipart/form-data'> <form method='POST' action='/doUpdate' enctype='multipart/form-data'>
<div class="form-group"> <div class="form-group">
<label for="fw-update-file" class="col-sm-2 col-form-label">Firmware-File</label> <label for="fw-update-file" class="col-sm-2 col-form-label">Firmware-File</label>
@ -485,7 +482,6 @@
</div> </div>
</div> </div>
</form> </form>
</p>
</div> </div>
<!-- Div Tab Firmware Update--> <!-- Div Tab Firmware Update-->
</div> </div>