mirror of
https://github.com/Southampton-RSG/breccia-mapper.git
synced 2026-03-03 19:37:06 +00:00
19 lines
530 B
HTML
Executable File
19 lines
530 B
HTML
Executable File
{% extends "account/base.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block head_title %}{% trans "Set Password" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h3 class="h3" id="head_banner">{% trans "Set Password" %}</h3>
|
|
|
|
<form method="POST" action="{% url 'account_set_password' %}" class="password_set">
|
|
{% csrf_token %}
|
|
|
|
{% load bootstrap4 %}
|
|
{% bootstrap_form form %}
|
|
<input class="btn btn-outline-primary btn-lg" type="submit" name="action" value="{% trans 'Set Password' %}"/>
|
|
</form>
|
|
{% endblock %}
|