Features/password links
Merge request reports
Activity
7 {% block body %} 8 <div class="container"> 9 <div class="row"> 10 <div class="col-md-4 col-md-offset-4"> 11 <div class="login-panel panel panel-default"> 12 <div class="panel-heading"> 13 <h3 class="panel-title">Please Sign In</h3> 14 </div> 15 <div class="panel-body"> 16 17 <form method="post"> 18 {% csrf_token %} 19 20 {% if form.errors %} 21 <p class="errornote"> 22 {% if form.errors.items|length == 1 %}{% trans "Please correct the error below." %}{% else %}{% trans "Please correct the errors below." %}{% endif %} blocktrans
has a plural keyword which is usually preferred, if no reasonable single formulation can be found.
23 </p> 24 {% endif %} 25 26 <p>{% trans "Please enter your old password, for security's sake, and then enter your new password twice so we can verify you typed it in correctly." %}</p> 27 28 <fieldset> 29 30 <div class="form-group"> 31 {{ form.old_password.errors }} 32 {{ form.old_password.label_tag }} {{ form.old_password }} 33 </div> 34 35 <div class="form-group"> 36 {{ form.new_password1.errors }} 37 {{ form.new_password1.label_tag }} {{ form.new_password1 }} 38 {% if form.new_password1.help_text %} added 499 commits
-
a5f8e374...e763589e - 497 commits from branch
develop
- 1a1c92d7 - Merge branch 'develop' into features/passwordLinks
- 9e430f92 - Style fixes
-
a5f8e374...e763589e - 497 commits from branch
mentioned in commit fb2144a1
mentioned in issue #8 (closed)
Please register or sign in to reply