cbmi/account/templates/clabpin.html

23 lines
687 B
HTML
Raw Normal View History

2013-10-25 04:24:26 +02:00
{% extends "form_base.html" %}
{% load i18n %}
{% load crispy_forms_tags %}
2015-09-24 21:40:54 +02:00
{% block form_title %}{% trans "Indoor PIN"%}{% endblock %}
2013-10-25 04:24:26 +02:00
{% block form_description %}
2015-09-24 21:40:54 +02:00
<p>{% blocktrans %}Change your PIN to access rooms secured with PIN-pad.{% endblocktrans %}</p>
2013-10-25 04:24:26 +02:00
{% endblock %}
{% block form_fields %}
<form action="{% url account.views.clabpin %}" method="post" class="form-horizontal well">
{% csrf_token %}
{{ form|crispy }}
<div class="control-group">
<div class="controls">
<button type="submit" class="btn btn-primary">{% trans "Save"%}</button>
</div>
</div>
</form>
2015-09-24 21:40:54 +02:00
{% endblock form_fields %}