Commit cc35593cba8db34a224a64b9b69586596403c1ec
1 parent
d1a817dd
Exists in
master
and in
39 other branches
Removing double semicolon
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
src/colab/deprecated/templates/login.html
... | ... | @@ -16,12 +16,12 @@ |
16 | 16 | <fieldset class="span-10 box"> |
17 | 17 | <legend>{% trans "Login" %}</legend> |
18 | 18 | <p> |
19 | - {{ form.username.label_tag }}: | |
19 | + {{ form.username.label_tag }} | |
20 | 20 | <br/> |
21 | 21 | {{ form.username }} |
22 | 22 | </p> |
23 | 23 | <p> |
24 | - {{ form.password.label_tag }}: | |
24 | + {{ form.password.label_tag }} | |
25 | 25 | <br/> |
26 | 26 | {{ form.password }} |
27 | 27 | </p> | ... | ... |