1
0
Fork 0
satnogs-db/db/templates/account/password_set.html

21 lines
489 B
HTML

{% extends "account/base.html" %}
{% load crispy_forms_tags %}
{% block head_title %}Set Password{% endblock %}
{% block content %}
<div class="container">
<div class="row">
<div class="col-md-5">
<h2>Set Password</h2>
<form method="POST" action="./" class="password_set">{% csrf_token %}
{{ form|crispy }}
<input type="submit" name="action" value="Set Password"/>
</form>
</div>
</div>
</div>
{% endblock %}