mirror of
https://github.com/fergalmoran/dss.git
synced 2026-01-19 15:23:58 +00:00
16 lines
421 B
HTML
Executable File
16 lines
421 B
HTML
Executable File
{% extends "account/base.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block head_title %}{% trans "Set Password" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{% trans "Set Password" %}</h1>
|
|
|
|
<form method="POST" action="" class="password_set">
|
|
{% csrf_token %}
|
|
{{ password_set_form.as_p }}
|
|
<input type="submit" name="action" value="{% trans "Set Password" %}"/>
|
|
</form>
|
|
{% endblock %}
|