mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-12-03 15:04:09 +03:00
23 lines
561 B
HTML
23 lines
561 B
HTML
{% raw %}
|
|
{% 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>
|
|
|
|
<form method="POST" action="" class="password_set">
|
|
{% csrf_token %}
|
|
{{ form|crispy }}
|
|
<input type="submit" name="action" value="{% trans "Set Password" %}"/>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
{% endraw %} |