Skip to content

Commit

Permalink
Remove unecessary and duplicated element id's
Browse files Browse the repository at this point in the history
The removed ID's where never used anywhere and also weren't unique.

http://www.w3.org/TR/2011/WD-html5-20110525/elements.html#concept-id
  • Loading branch information
starflow committed May 27, 2015
1 parent fbcb8a8 commit 4b1f73f
Showing 1 changed file with 12 additions and 15 deletions.
27 changes: 12 additions & 15 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ <h2>Dev Settings</h2>
<input type="text" name="sammeln" id="sammeln" value="10">

<label for="konzentrieren">Konzentrieren:</label>
<input type="text" name="konzentrieren" id="konzentrieren" value="1">
<input type="text" name="konzentrieren" value="1">
<input type="submit" value="Start">
</form>


Expand All @@ -58,17 +59,16 @@ <h2>Dev Settings</h2>

<b>Pfandsammeln Cancel</b><br/>

<label for="type">Type:</label>
<input type="text" name="type" id="type" value="1">
<label for="pfandsammel_type">Type:</label>
<input type="text" name="type" value="1">

<label for="time">Time:</label>
<input type="text" name="time" id="time" value="10">
<label for="pfandsammel_time">Time:</label>
<input type="text" name="time" value="10">

<label for="cancel">Cancel:</label>
<input type="text" name="cancel" id="cancel" value="1">
<input type="text" name="cancel" value="1">

<label for="Submit2">Submit2:</label>
<input type="text" name="Submit2" id="Submit2" value="Abbrechen">
<input type="submit" name="Submit2" value="Abbrechen">
</form>


Expand All @@ -80,22 +80,19 @@ <h2>Dev Settings</h2>
<b>Einkaufwagen leeren</b><br/>

<label for="type">Type:</label>
<input type="text" name="type" id="type" value="1">
<input type="text" name="type" value="1">

<label for="time">Time:</label>
<input type="text" name="time" id="time" value="">
<input type="text" name="time" value="">

<label for="bottlecollect_pending">Bottlecollect_pending:</label>
<input type="text" name="bottlecollect_pending" id="bottlecollect_pending" value="True">
<input type="text" name="bottlecollect_pending" value="True">

<label for="Submit2">Submit2:</label>
<input type="text" name="Submit2" id="Submit2" value="Einkaufswagen+ausleeren">
<input type="submit" name="Submit2" value="Einkaufswagen ausleeren">
</form>


<br/>
<br/>

<iframe src=""
name="request_window"
width="1"
Expand Down

0 comments on commit 4b1f73f

Please sign in to comment.