Skip to content

Commit

Permalink
Get rid of tabindex
Browse files Browse the repository at this point in the history
  • Loading branch information
atjn committed Dec 12, 2024
1 parent fa8e769 commit 104d49e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions stregsystem/templates/stregsystem/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,16 @@

<header>
<div class="left">
<input type="button" onclick="location.href='/{{room.id}}';" value="Genstart" tabindex="10" accesskey="q">
<input type="button" onclick="location.href='/{{room.id}}';" value="Genstart" accesskey="q">
</div>
<h1>
{% block heading %}
TREOENs STREGSYSTEM {% if room.id != 1 %} : {{room.description}} {% endif %}
{% endblock %}
</h1>
<div class="right">
<input type="button" onclick="location.href='/{{room.id}}';" value="Menu" tabindex="11" />
<input type="button" onclick="location.href='/signup'" value="Tilmeld" tabindex="12"/>
<input type="button" onclick="location.href='/{{room.id}}';" value="Menu"/>
<input type="button" onclick="location.href='/signup'" value="Tilmeld"/>
</div>
</header>
<div id="base-content">
Expand Down
4 changes: 2 additions & 2 deletions stregsystem/templates/stregsystem/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@
{% block saleform %}
<p>
<label for="quickbuy">Quickbuy</label>
<input tabindex="1" type="text" size="20" id="quickbuy" name="quickbuy" autofocus />
<input tabindex="3" type="submit" value="Køb!" id="buybutton" />
<input type="text" size="20" id="quickbuy" name="quickbuy" autofocus />
<input type="submit" value="Køb!" id="buybutton" />
</p>
{% endblock %}
</form>
Expand Down
2 changes: 1 addition & 1 deletion stregsystem/templates/stregsystem/signup_status.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
<br/><br/>
<a href="{{ mobilepay_url }}">{{ mobilepay_qr_svg|safe }}</a>
<br/><br/>
<input type="button" onclick="location.href='/';" value="Færdig" tabindex="1">
<input type="button" onclick="location.href='/';" value="Færdig">
</center>
{% endblock %}

0 comments on commit 104d49e

Please sign in to comment.