1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

21 lines
733 B
HTML
Raw Normal View History

2020-05-06 13:25:17 -04:00
{% extends 'users/base.html' %}
2016-03-01 11:23:03 -05:00
{% load form_helpers %}
{% block title %}Change Password{% endblock %}
2021-08-24 15:24:03 -04:00
{% block content %}
<form action="." method="post" class="form form-horizontal col-md-8 offset-md-2">
{% csrf_token %}
2021-04-13 21:51:12 -07:00
<div class="field-group">
2021-07-22 12:31:50 -04:00
<h5 class="text-center">Password</h5>
2021-04-13 21:51:12 -07:00
{% render_field form.old_password %}
{% render_field form.new_password1 %}
{% render_field form.new_password2 %}
</div>
2021-04-13 21:51:12 -07:00
<div class="text-end">
<a href="{% url 'user:profile' %}" class="btn btn-outline-danger">Cancel</a>
<button type="submit" name="_update" class="btn btn-primary">Save</button>
</div>
</form>
2016-03-01 11:23:03 -05:00
{% endblock %}