Skip to content

Commit 104d49e

Browse files
committed
Get rid of tabindex
1 parent fa8e769 commit 104d49e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

stregsystem/templates/stregsystem/base.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,16 @@
2828

2929
<header>
3030
<div class="left">
31-
<input type="button" onclick="location.href='/{{room.id}}';" value="Genstart" tabindex="10" accesskey="q">
31+
<input type="button" onclick="location.href='/{{room.id}}';" value="Genstart" accesskey="q">
3232
</div>
3333
<h1>
3434
{% block heading %}
3535
TREOENs STREGSYSTEM {% if room.id != 1 %} : {{room.description}} {% endif %}
3636
{% endblock %}
3737
</h1>
3838
<div class="right">
39-
<input type="button" onclick="location.href='/{{room.id}}';" value="Menu" tabindex="11" />
40-
<input type="button" onclick="location.href='/signup'" value="Tilmeld" tabindex="12"/>
39+
<input type="button" onclick="location.href='/{{room.id}}';" value="Menu"/>
40+
<input type="button" onclick="location.href='/signup'" value="Tilmeld"/>
4141
</div>
4242
</header>
4343
<div id="base-content">

stregsystem/templates/stregsystem/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@
5151
{% block saleform %}
5252
<p>
5353
<label for="quickbuy">Quickbuy</label>
54-
<input tabindex="1" type="text" size="20" id="quickbuy" name="quickbuy" autofocus />
55-
<input tabindex="3" type="submit" value="Køb!" id="buybutton" />
54+
<input type="text" size="20" id="quickbuy" name="quickbuy" autofocus />
55+
<input type="submit" value="Køb!" id="buybutton" />
5656
</p>
5757
{% endblock %}
5858
</form>

stregsystem/templates/stregsystem/signup_status.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
<br/><br/>
1515
<a href="{{ mobilepay_url }}">{{ mobilepay_qr_svg|safe }}</a>
1616
<br/><br/>
17-
<input type="button" onclick="location.href='/';" value="Færdig" tabindex="1">
17+
<input type="button" onclick="location.href='/';" value="Færdig">
1818
</center>
1919
{% endblock %}

0 commit comments

Comments
 (0)