Skip to content

Commit

Permalink
Fix syntax/validation errors in index.html (nrwiersma#24)
Browse files Browse the repository at this point in the history
index.html now passes validation on https://validator.w3.org
  • Loading branch information
mfalkvidd authored and nrwiersma committed Aug 8, 2018
1 parent 5b407a2 commit ace9ea0
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions data/index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
Expand Down Expand Up @@ -84,21 +84,22 @@
white-space: nowrap;
}
</style>
<title>ConfigManager</title>
</head>
<body>
<div class="container">
<h1 style="text-align: center;">Wifi Details</h1>
<form method="post" action="/">
<div class="field-group">
<label>SSID</label>
<input name="ssid" type="text" length=32>
<input name="ssid" type="text" size="32">
</div>
<div class="field-group">
<label>Password</label>
<input name="password" type="text" length=64>
<input name="password" type="text" size="64">
</div>
<div class="button-container">
<button type="submit">Save</button
<button type="submit">Save</button>
</div>
</form>
</div>
Expand Down

0 comments on commit ace9ea0

Please sign in to comment.