OpenSlides/openslides/users/templates/users/password_change.html
Oskar Hahn 3527b0a75b Refactory of the participant app
* New user model (used Django's AbstractBaseUser)
* Renamed the app to users
* removed person api

See #861

Fixed #576 #478
2014-10-12 10:06:54 +02:00

15 lines
354 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "base.html" %}
{% load i18n %}
{% block title %}{% trans "Password settings" %} {{ block.super }}{% endblock %}
{% block content %}
<h1>{% trans "Password settings" %}</h1>
<form action="" method="post">{% csrf_token %}
{% include "form.html" %}
{% include "formbuttons_save.html" %}
</form>
{% endblock %}