mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-20 14:21:00 +00:00
17 lines
532 B
HTML
17 lines
532 B
HTML
{% extends "settings/base.html" %}
|
|
|
|
{% block subtitle %}Login & Security{% endblock %}
|
|
|
|
{% block content %}
|
|
<form action="." method="POST">
|
|
{% csrf_token %}
|
|
<fieldset>
|
|
<legend>Login</legend>
|
|
{% include "forms/_field.html" with field=form.email %}
|
|
</fieldset>
|
|
<fieldset>
|
|
<legend>Password</legend>
|
|
<p>To change your password, please trigger a <a href="{% url "trigger_reset" %}">password reset</a>.
|
|
</fieldset>
|
|
</form>
|
|
{% endblock %}
|