Commit cbe5ec7c799cf5c22167075f54e8b3d7057b3e24
1 parent
c4326873
Exists in
master
and in
5 other branches
Included some fields translations [Issue:#398]
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
users/templates/users/change_password.html
... | ... | @@ -29,15 +29,15 @@ |
29 | 29 | {% csrf_token %} |
30 | 30 | <div class="form-group"> |
31 | 31 | <label class="control-label" for="focusedInput1">{% trans 'Current Password' %}</label> |
32 | - <input type="password" class="form-control" id="inputPassword" placeholder="Password"> | |
32 | + <input type="password" class="form-control" id="inputPassword" placeholder="{% trans 'Password' %}"> | |
33 | 33 | </div> |
34 | 34 | <div class="form-group"> |
35 | 35 | <label class="control-label" for="focusedInput1">{% trans 'New Password' %}</label> |
36 | - <input type="password" class="form-control" id="inputPassword" placeholder="Password"> | |
36 | + <input type="password" class="form-control" id="inputPassword" placeholder="{% trans 'Password' %}"> | |
37 | 37 | </div> |
38 | 38 | <div class="form-group"> |
39 | 39 | <label class="control-label" for="focusedInput1">{% trans 'Confirmation' %}</label> |
40 | - <input type="password" class="form-control" id="inputPassword" placeholder="Password"> | |
40 | + <input type="password" class="form-control" id="inputPassword" placeholder="{% trans 'Password' %}"> | |
41 | 41 | </div> |
42 | 42 | <div class="row"> |
43 | 43 | <div class="col-md-3 col-sm-2 col-xs-2"> | ... | ... |