23 lines
767 B
HTML
23 lines
767 B
HTML
{% extends "base.html" %}
|
|
{% load crispy_forms_filters %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block head_title %}{% trans "Set Password" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<nav aria-label="breadcrumb">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item"><a href="{% url 'view_settings' %}">{% trans 'Settings' %}</a></li>
|
|
<li class="breadcrumb-item active" aria-current="page">{% trans 'Password' %}</li>
|
|
</ol>
|
|
</nav>
|
|
|
|
<h1>{% trans "Set Password" %}</h1>
|
|
|
|
<form method="POST" action="{% url 'account_set_password' %}" class="password_set">
|
|
{% csrf_token %}
|
|
{{ form | crispy }}
|
|
<input type="submit" class="btn btn-primary" name="action" value="{% trans 'Set Password' %}"/>
|
|
</form>
|
|
{% endblock %} |