1
0
mirror of https://github.com/peeringdb/peeringdb.git synced 2024-05-11 05:55:09 +00:00
Files
peeringdb-peeringdb/peeringdb_server/templates/site/profile-change-password.html
Matt Griswold fa85504d71 PR qu20020 branding fixes (#467)
* Qu20020 - Assorted Fixes

- PeeringDB version is missing on the error page footer #432
- Inconsistent page widths #446
- Facility countries show up in different languages #448
- sponsor level in search results #449

* fix tests
2019-04-01 15:01:57 -05:00

34 lines
1.2 KiB
HTML

{% load i18n %}
<div class="editable always panel"
data-edit-target="/change-password"
id="form-change-password">
<h3>{% trans "Change password" %}</h3>
<div class="editable popin info" id="password-change-success" style="display:none;">{% trans "Password changed" %}!</div>
<input type="password"
class="editable string form-control marg-bot-15"
placeholder="{% trans "Current Password" %}"
data-edit-name="password_c"
data-edit-type="password"
data-edit-required="yes" />
<input type="password"
class="editable string form-control marg-bot-15"
placeholder="{% trans "Password" %}"
data-edit-name="password"
data-edit-type="password"
data-edit-required="yes" />
<input type="password"
class="editable string form-control marg-bot-15"
placeholder="{% trans "Password Verification" %}"
data-edit-name="password_v"
data-edit-type="password"
data-edit-required="yes" />
<a class="btn btn-default" data-edit-action="submit">{% trans "Change Password" %}</a>
</div>