2013-08-16 17:17:18 +04:00
|
|
|
{% raw %}
|
2013-08-16 16:07:28 +04:00
|
|
|
{% extends "account/base.html" %}
|
|
|
|
|
|
|
|
{% load i18n crispy_forms_tags %}
|
|
|
|
|
|
|
|
{% block head_title %}{% trans "Set Password" %}{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-5">
|
|
|
|
<h2>{% trans "Set Password" %}</h2>
|
2014-02-26 18:32:58 +04:00
|
|
|
|
|
|
|
<form method="POST" action="./" class="password_set">
|
2013-08-16 16:07:28 +04:00
|
|
|
{% csrf_token %}
|
|
|
|
{{ form|crispy }}
|
|
|
|
<input type="submit" name="action" value="{% trans "Set Password" %}"/>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
2014-02-26 18:32:58 +04:00
|
|
|
{% endraw %}
|