Skip to content

Commit bdacb66

Browse files
committed
Lowercase HTML label tag. Refs #2121.
1 parent 5b671cb commit bdacb66

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rest_framework/templates/rest_framework/login_base.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<div id="div_id_username"
2323
class="clearfix control-group {% if form.username.errors %}error{% endif %}">
2424
<div class="controls">
25-
<Label class="span4">Username:</label>
25+
<label class="span4">Username:</label>
2626
<input style="height: 25px" type="text" name="username" maxlength="100"
2727
autocapitalize="off"
2828
autocorrect="off" class="span12 textinput textInput"
@@ -38,7 +38,7 @@
3838
<div id="div_id_password"
3939
class="clearfix control-group {% if form.password.errors %}error{% endif %}">
4040
<div class="controls">
41-
<Label class="span4">Password:</label>
41+
<label class="span4">Password:</label>
4242
<input style="height: 25px" type="password" name="password" maxlength="100"
4343
autocapitalize="off" autocorrect="off" class="span12 textinput textInput"
4444
id="id_password" required>

0 commit comments

Comments
 (0)