takahe/templates/settings/login_security.html
Andrew Godwin 8f57aa5f37
UI/Domains Refactor
Redoes the UI to remove timelines, promote domains, and a lot of other things to support the refactor.
2023-05-03 22:42:37 -06:00

18 lines
545 B
HTML

{% extends "settings/base.html" %}
{% block subtitle %}Login & Security{% endblock %}
{% block settings_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>.</p>
</fieldset>
</form>
{% endblock %}