Files
mdshop/code/templates/profile.html
2022-09-23 20:32:27 +03:00

15 lines
391 B
HTML

{% extends "layout.html" %}
{% block body %}
<h2>Profile</h2>
{% if error %}<p class=error><strong>Error:</strong> {{ error }}{% endif %}
<form action="{{ url_for('profile') }}" method=post>
<dl>
<dt>Username:
<dd>{{ user }}
<dt>Password:
<dd><input type=password name=password>
<dd><input type=submit value=Update>
</dl>
</form>
{% endblock %}