OpenSlides/openslides/participant/templates/participant/settings.html
2012-02-09 16:57:10 +01:00

28 lines
733 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% block title %}{{ block.super }} - {%trans "Your Settings" %}{% endblock %}
{% block submenu %}
{% endblock %}
{% block content %}
<h1>{%trans "Your Settings" %}</h1>
<form action="" method="post">{% csrf_token %}
{{ form_user.as_p }}
{{ form_password.as_p }}
<button class="button" type="submit">
<span class="icon ok">{%trans 'Save' %}</span>
</button>
<a href='{% url item_overview %}'>
<button class="button" type="button" onclick="window.location='{% url item_overview %}'">
<span class="icon cancel">{%trans 'Cancel' %}</span>
</button>
</a>
</form>
<p></p>
{% endblock %}